3v4l.org

run code in 300+ PHP versions simultaneously
<?php header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); //$start = microtime(true); // Turn off all error reporting //error_reporting(0); $page=1; //echo strtotime('2013-12-25 04:16:25'); //echo '<br>'; //echo strtotime('2013-12-26 14:26:25'); ?> <script> // Add the following into your HEAD section var timer = 0; function set_interval() {//alert("Anwar"); // the interval 'timer' is set as soon as the page loads timer = setInterval("auto_logout()", 10*60000); // the figure '10000' above indicates how many milliseconds the timer be set to. // Eg: to set it to 5 mins, calculate 5min = 5x60 = 300 sec = 300,000 millisec. // So set it to 300000 } function reset_interval() { //resets the timer. The timer is reset on each of the below events: // 1. mousemove 2. mouseclick 3. key press 4. scroliing //first step: clear the existing timer if (timer != 0) { clearInterval(timer); timer = 0; // second step: implement the timer again timer = setInterval("auto_logout()", 10*60000); // completed the reset of the timer } } function auto_logout() { // this function will redirect the user to the logout script //window.location = '<?php echo base_url(); ?>dashboard/logout'; } // Add the following attributes into your BODY tag //window.onload="set_interval()"; //onmousemove="reset_interval()" //onclick="reset_interval()" //onkeypress="reset_interval()" //onscroll="reset_interval()" $(window).load(function(){ //set_interval(); }); $('body').mousemove(function() { reset_interval(); //alert("mousemove"); }).click(function() { //alert("onclick"); reset_interval(); }).keypress(function() { //alert("keypress"); reset_interval(); }).scroll(function() { //alert("keypress"); reset_interval(); }); </script> <div id="sidebar" class="sidebar"> <script type="text/javascript"> try{ace.settings.check('sidebar' , 'fixed')}catch(e){} </script> <script> $(document).ready(function(){ $('.tooltip_custom').hide(); $('.toolinfo').mouseenter(function(ev){ //alert($(this).attr('id')); offSet=$(this).offset(); var txt=$(this).attr('tooltip_txt'); //alert(offSet.top+">>> "+offSet.left); $('.tooltip_custom').css('top',offSet.top-20); $('.tooltip_custom').css('left',offSet.left); $('.tooltip_custom').css('z-index',99999); $('.tooltip_custom span').text(txt); $('.tooltip_custom').show(); }); $('.toolinfo').mouseleave(function(eve){ $('.tooltip_custom').hide(); }); }); </script> <div class="tooltip_custom" style="width: 91px; height: 44px; position: absolute; background-image: url('<?php echo base_url();?>assets/images/tool_tip_bg.png'); text-align:center; color:#FFFFFF; display:none;"><span style="float:left; padding-top: 15px; padding-left:10px;"></span></div> <div class="sidebar-shortcuts" id="sidebar-shortcuts"> <div class="sidebar-shortcuts-large" id="sidebar-shortcuts-large"> <span class="btn btn-small btn-success tooltip-info toolinfo" data-placement="bottom" tooltip_txt="Add Patient" onclick="location.href='<?php echo base_url()?>dashboard/add_patient'"> <!--<i class="icon-signal"></i>--> <i class="icon-plus"></i> </span> <?php if($this->session->userdata['user_data']['user_type_id']==1){ ?> <span class="btn btn-info btn-small tooltip-info toolinfo" data-placement="bottom" tooltip_txt="Add Provider" onclick="location.href='<?php echo base_url()?>dashboard/add_provider'"> <i class="icon-user-md"></i> </span> <?php } ?> <span class="btn btn-info btn-small tooltip-info toolinfo" data-placement="bottom" tooltip_txt="Inbox" onclick="location.href='<?php echo base_url()?>dashboard/messages'"> <i class="icon-envelope"></i> </span> </div> <div class="sidebar-shortcuts-mini" id="sidebar-shortcuts-mini"> <span class="btn btn-success"></span> <span class="btn btn-info"></span> <span class="btn btn-warning"></span> <span class="btn btn-danger"></span> </div> </div> <!--#sidebar-shortcuts--> <ul class="nav nav-list"> <li class="active"> <a href="<?php echo base_url();?>dashboard/home"> <i class="icon-dashboard"></i> <span class="menu-text"> Dashboard </span> </a> </li> <!--<li> <a href="typography.html"> <i class="icon-text-width"></i> <span class="menu-text"> Typography </span> </a> </li>--> <?php if($this->session->userdata['user_data']['user_type_id']== ROLE_ADMIN){ ?> <li> <a class="dropdown-toggle" href="javascript:void(0);"> <i class="icon-user-md"></i> <span class="menu-text"> Providers <span class="badge badge-primary "> <?php echo $total_providers; ?> </span> </span> <b class="arrow icon-angle-down"></b> </a> <ul class="submenu"> <li> <a href="<?php echo base_url();?>dashboard/provider_list"> <i class="icon-double-angle-right"></i> List All </a> </li> <li><?php //echo base_url();?> <!--newdash_provider/add_physician--> <a href="<?php echo base_url();?>dashboard/add_provider"> <i class="icon-double-angle-right"></i> Add A Physician </a> </li> </ul> </li> <?php } ?> <li> <a class="dropdown-toggle" href="#"> <i class="icon-group"></i> <span class="menu-text"> Patients <span class="badge badge-primary "><?php //$arr = $this->common->patient(); echo $total_patient; ?></span> </span> <b class="arrow icon-angle-down"></b> </a> <ul class="submenu"> <li> <a href="<?php echo base_url();?>dashboard/patient_list"> <i class="icon-double-angle-right"></i> Patient list </a> </li> <!--<li> <a href="<?php //echo base_url();?>patient_search"> <i class="icon-double-angle-right"></i> Patient Search </a> </li>--> <li> <a href="<?php echo base_url();?>dashboard/add_patient"> <i class="icon-double-angle-right"></i> Add A Patient </a> </li> </ul> </li> <?php if($this->session->userdata['user_data']['user_type_id']==1){ ?> <li> <a class="dropdown-toggle" href="#"> <i class="icon-cogs"></i> <span class="menu-text"> Settings </span> <b class="arrow icon-angle-down"></b> </a> <ul class="submenu"> <li> <a href="<?php echo base_url();?>dashboard/location"> <i class="icon-double-angle-right"></i> Rounding Locations </a> </li> <li> <a href="<?php echo base_url();?>dashboard/referral_list"> <i class="icon-double-angle-right"></i> Referral Network </a> </li> <li> <a href="<?php echo base_url();?>dashboard/coverage_type_list"> <i class="icon-double-angle-right"></i> Coverage Types </a> </li> <li> <a href="<?php echo base_url();?>dashboard/quick_list"> <i class="icon-double-angle-right"></i> Quick List </a> </li> <li> <a href="<?php echo base_url();?>dashboard/template/management_templates"> <!-- changed here on 20/11/2013--> <i class="icon-double-angle-right"></i> Templates </a> </li> <li> <a href="<?php echo base_url();?>dashboard/fee/view"> <i class="icon-double-angle-right"></i> Fee Schedule </a> </li> <li> <a href="<?php echo base_url();?>dashboard/account_information"> <i class="icon-double-angle-right"></i> Account Information </a> </li> <li> <a href="<?php echo base_url();?>dashboard/preferences"> <i class="icon-double-angle-right"></i> Preferences </a> </li> </ul> </li> <? } ?> <?php if($this->session->userdata['user_data']['user_type_id']==1){ ?> <li> <a class="dropdown-toggle" href="#"> <i class="icon-user"></i> <span class="menu-text"> Staff <span class="badge badge-primary "><?php echo $billers_count; ?></span> </span> <b class="arrow icon-angle-down"></b> </a> <ul class="submenu"> <?php /*?> <?php if($arr['total_physician'] != '0'){ foreach($arr['detail'] as $val){ ?> <li> <a href="edit_biller.php?biller_id=<?php echo base64_encode($val->id);?>"> <i class="icon-double-angle-right"></i> <?php echo ucfirst(stripslashes($val->first_name))?> <?php echo ucfirst(stripslashes($val->last_name))?></span> </a> </li> <?php }} ?><?php */?> <li> <!--<a href="<?php //echo base_url();?>admin/billers">--> <a href="<?php echo base_url();?>dashboard/biller_list"> <i class="icon-double-angle-right"></i> User List </a> </li> <li> <!--<a href="<?php //echo base_url();?>admin/add_biller">--> <a href="<?php echo base_url();?>dashboard/add_biller"> <i class="icon-double-angle-right"></i> Add User </a> </li> </ul> </li> <li> <a class="dropdown-toggle" href="#"> <i class="icon-share-sign"></i> <span class="menu-text"> Sharing Information </span> <b class="arrow icon-angle-down"></b> </a> <ul class="submenu"> <li> <a href="<?php echo base_url();?>dashboard/member_search"> <i class="icon-double-angle-right"></i> Member Search </a> </li> <li> <a href="<?php echo base_url();?>dashboard/pending_sharing_requests"> <i class="icon-double-angle-right"></i> Pending </a> </li> <li> <a href="<?php echo base_url();?>dashboard/sharing"> <i class="icon-double-angle-right"></i> Sharing </a> </li> </ul> </li> <?php } ?> <li> <a class="dropdown-toggle" href="#"> <i class="icon-table"></i> <span class="menu-text"> Reports </span> <b class="arrow icon-angle-down"></b> </a> <ul class="submenu"> <li> <a href="<?php echo base_url();?>dashboard/downloads"> <i class="icon-double-angle-right"></i> Download </a> </li> <li> <a href="<?php echo base_url();?>reports/readmissions/"> <i class='icon-double-angle-right'></i>Readmissions </a> </li> <li> <a href="<?php echo base_url();?>rvu_reporting/"> <i class='icon-double-angle-right'></i> RVU </a> </li> <li> <a href="<?php echo base_url();?>dashboard/urgent_messages_report"> <i class='icon-double-angle-right'></i> Urgent Messages Report </a> </li> </ul> </li> </ul><!--/.nav-list--> <div id="sidebar-collapse" class="sidebar-collapse"> <i data-icon2="icon-double-angle-right" data-icon1="icon-double-angle-left" class="icon-double-angle-left"></i> </div> <script type="text/javascript"> try{ace.settings.check('sidebar' , 'collapsed')}catch(e){} </script> </div> <input type="hidden" id="messaging_data_global_id" value="<?php echo $this->session->userdata['user_data']['id']; ?>" /> <input type="hidden" id="messaging_data_global_username" value="<?php echo $this->session->userdata['user_data']['first_name'].' '.$this->session->userdata['user_data']['last_name']; ?>" /> <input type="hidden" id="messaging_data_global_org_id" value="<?php echo $this->session->userdata['user_data']['org_id']; ?>" /> <input type="hidden" id="messaging_data_global_role" value="<?php echo $this->session->userdata['user_data']['user_type_id']; ?>" /> <input type="hidden" id="messaging_data_global_img" value="<?php echo $this->session->userdata['user_data']['image']; ?>" /> <input type="hidden" id="messaging_data_global_org_name" value="<?php echo $this->session->userdata['user_data']['org_name']; ?>" /> <input type="hidden" id="messaging_data_global_phone_number" value="<?php echo $this->session->userdata['user_data']['phone_number']; ?>" /> <input type="hidden" id="messaging_data_global_base_url" value="<?php echo base_url() ?>" /> <input type="hidden" id="base_url" value="<?php echo base_url(); ?>" /> <input type="hidden" id="node_url" value="<?php echo $this->config->item('node_url'); ?>" />
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 42, Position 2 = 47
Branch analysis from position: 42
2 jumps found. (Code = 43) Position 1 = 64, Position 2 = 76
Branch analysis from position: 64
2 jumps found. (Code = 43) Position 1 = 95, Position 2 = 128
Branch analysis from position: 95
2 jumps found. (Code = 43) Position 1 = 136, Position 2 = 162
Branch analysis from position: 136
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 162
Branch analysis from position: 128
Branch analysis from position: 76
Branch analysis from position: 47
filename:       /in/agcus
function name:  (null)
number of ops:  251
compiled vars:  !0 = $page, !1 = $total_providers, !2 = $total_patient, !3 = $billers_count
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   INIT_FCALL                                               'header'
          1        SEND_VAL                                                 'Expires%3A+Mon%2C+26+Jul+1997+05%3A00%3A00+GMT'
          2        DO_ICALL                                                 
    3     3        INIT_FCALL                                               'header'
          4        INIT_FCALL                                               'gmdate'
          5        SEND_VAL                                                 'D%2C+d+M+Y+H%3Ai%3As'
          6        DO_ICALL                                         $5      
          7        CONCAT                                           ~6      'Last-Modified%3A+', $5
          8        CONCAT                                           ~7      ~6, '+GMT'
          9        SEND_VAL                                                 ~7
         10        DO_ICALL                                                 
    4    11        INIT_FCALL                                               'header'
         12        SEND_VAL                                                 'Cache-Control%3A+no-store%2C+no-cache%2C+must-revalidate'
         13        DO_ICALL                                                 
    5    14        INIT_FCALL                                               'header'
         15        SEND_VAL                                                 'Cache-Control%3A+post-check%3D0%2C+pre-check%3D0'
         16        SEND_VAL                                                 <false>
         17        DO_ICALL                                                 
    6    18        INIT_FCALL                                               'header'
         19        SEND_VAL                                                 'Pragma%3A+no-cache'
         20        DO_ICALL                                                 
   10    21        ASSIGN                                                   !0, 1
   15    22        ECHO                                                     '%3Cscript%3E%0A%2F%2F+Add+the+following+into+your+HEAD+section%0Avar+timer+%3D+0%3B%0Afunction+set_interval%28%29+%7B%2F%2Falert%28%22Anwar%22%29%3B%0A++%2F%2F+the+interval+%27timer%27+is+set+as+soon+as+the+page+loads%0A++timer+%3D+setInterval%28%22auto_logout%28%29%22%2C+10%2A60000%29%3B%0A++%2F%2F+the+figure+%2710000%27+above+indicates+how+many+milliseconds+the+timer+be+set+to.%0A++%2F%2F+Eg%3A+to+set+it+to+5+mins%2C+calculate+5min+%3D+5x60+%3D+300+sec+%3D+300%2C000+millisec.%0A++%2F%2F+So+set+it+to+300000%0A%7D%0A%0Afunction+reset_interval%28%29+%7B%0A++%2F%2Fresets+the+timer.+The+timer+is+reset+on+each+of+the+below+events%3A%0A++%2F%2F+1.+mousemove+++2.+mouseclick+++3.+key+press+4.+scroliing%0A++%2F%2Ffirst+step%3A+clear+the+existing+timer%0A%0A++if+%28timer+%21%3D+0%29+%7B%0A++++clearInterval%28timer%29%3B%0A++++timer+%3D+0%3B%0A++++%2F%2F+second+step%3A+implement+the+timer+again%0A++++timer+%3D+setInterval%28%22auto_logout%28%29%22%2C+10%2A60000%29%3B%0A++++%2F%2F+completed+the+reset+of+the+timer%0A++%7D%0A%7D%0A%0Afunction+auto_logout%28%29+%7B%0A++%2F%2F+this+function+will+redirect+the+user+to+the+logout+script%0A++%2F%2Fwindow.location+%3D+%27'
   42    23        INIT_FCALL_BY_NAME                                       'base_url'
         24        DO_FCALL                                      0  $13     
         25        ECHO                                                     $13
         26        ECHO                                                     'dashboard%2Flogout%27%3B%0A%7D%0A%0A%2F%2F+Add+the+following+attributes+into+your+BODY+tag%0A%2F%2Fwindow.onload%3D%22set_interval%28%29%22%3B%0A%2F%2Fonmousemove%3D%22reset_interval%28%29%22%0A%2F%2Fonclick%3D%22reset_interval%28%29%22%0A%2F%2Fonkeypress%3D%22reset_interval%28%29%22%0A%2F%2Fonscroll%3D%22reset_interval%28%29%22%0A%0A%24%28window%29.load%28function%28%29%7B%0A++%2F%2Fset_interval%28%29%3B%0A%7D%29%3B%0A%0A%24%28%27body%27%29.mousemove%28function%28%29+%7B%0A++++reset_interval%28%29%3B%0A++++%2F%2Falert%28%22mousemove%22%29%3B%0A%7D%29.click%28function%28%29+%7B%0A++++%2F%2Falert%28%22onclick%22%29%3B%0A++++reset_interval%28%29%3B%0A%7D%29.keypress%28function%28%29+%7B%0A++++%2F%2Falert%28%22keypress%22%29%3B%0A++++reset_interval%28%29%3B%0A%7D%29.scroll%28function%28%29+%7B%0A++++%2F%2Falert%28%22keypress%22%29%3B%0A++++reset_interval%28%29%3B%0A%7D%29%3B%0A%3C%2Fscript%3E%0A%3Cdiv+id%3D%22sidebar%22+class%3D%22sidebar%22%3E%0A++++++++++++++++%3Cscript+type%3D%22text%2Fjavascript%22%3E%0A++++++++++++++++++++try%7Bace.settings.check%28%27sidebar%27+%2C+%27fixed%27%29%7Dcatch%28e%29%7B%7D%0A++++++++++++++++%3C%2Fscript%3E%0A++++++++++++++++%3Cscript%3E%0A++++++++++++++++++++%24%28document%29.ready%28function%28%29%7B%0A+++++++++++++++++++++++%24%28%27.tooltip_custom%27%29.hide%28%29%3B%0A+++++++++++++++++++++++%24%28%27.toolinfo%27%29.mouseenter%28function%28ev%29%7B%0A%0A+++++++++++++++++++++++++++%2F%2Falert%28%24%28this%29.attr%28%27id%27%29%29%3B%0A++++++++++++++++++++++++++++offSet%3D%24%28this%29.offset%28%29%3B%0A++++++++++++++++++++++++++++var+txt%3D%24%28this%29.attr%28%27tooltip_txt%27%29%3B%0A++++++++++++++++++++++++++++%2F%2Falert%28offSet.top%2B%22%3E%3E%3E+%22%2BoffSet.left%29%3B%0A+++++++++++++++++++++++++++++%24%28%27.tooltip_custom%27%29.css%28%27top%27%2CoffSet.top-20%29%3B%0A+++++++++++++++++++++++++++++%24%28%27.tooltip_custom%27%29.css%28%27left%27%2CoffSet.left%29%3B%0A%09%09%09%09%09%09%09+%24%28%27.tooltip_custom%27%29.css%28%27z-index%27%2C99999%29%3B%0A++++++++++++++++++++++++++++++%24%28%27.tooltip_custom+span%27%29.text%28txt%29%3B%0A++++++++++++++++++++++++++++%24%28%27.tooltip_custom%27%29.show%28%29%3B%0A%0A+++++++++++++++++++++++%7D%29%3B%0A+++++++++++++++++++++++%24%28%27.toolinfo%27%29.mouseleave%28function%28eve%29%7B%0A+++++++++++++++++++++++++++++%24%28%27.tooltip_custom%27%29.hide%28%29%3B%0A%0A+++++++++++++++++++++++%7D%29%3B%0A%0A++++++++++++++++++++%7D%29%3B%0A++++++++++++++++%3C%2Fscript%3E%0A+++++++++++++%3Cdiv+class%3D%22tooltip_custom%22+style%3D%22width%3A+91px%3B+height%3A+44px%3B+position%3A+absolute%3B+background-image%3A+url%28%27'
   97    27        INIT_FCALL_BY_NAME                                       'base_url'
         28        DO_FCALL                                      0  $14     
         29        ECHO                                                     $14
         30        ECHO                                                     'assets%2Fimages%2Ftool_tip_bg.png%27%29%3B+text-align%3Acenter%3B+color%3A%23FFFFFF%3B+display%3Anone%3B%22%3E%3Cspan+style%3D%22float%3Aleft%3B+padding-top%3A+15px%3B+padding-left%3A10px%3B%22%3E%3C%2Fspan%3E%3C%2Fdiv%3E%0A%0A%09%09%09%09%3Cdiv+class%3D%22sidebar-shortcuts%22+id%3D%22sidebar-shortcuts%22%3E%0A%0A%09%09%09%09%09%3Cdiv+class%3D%22sidebar-shortcuts-large%22+id%3D%22sidebar-shortcuts-large%22%3E%0A%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-small+btn-success+tooltip-info+toolinfo%22++data-placement%3D%22bottom%22+tooltip_txt%3D%22Add+Patient%22++onclick%3D%22location.href%3D%27'
  102    31        INIT_FCALL_BY_NAME                                       'base_url'
         32        DO_FCALL                                      0  $15     
         33        ECHO                                                     $15
         34        ECHO                                                     'dashboard%2Fadd_patient%27%22%3E%0A%09%09%09%09%09%09%09%3C%21--%3Ci+class%3D%22icon-signal%22%3E%3C%2Fi%3E--%3E%0A%09%09%09%09%09%09%09%3Ci+class%3D%22icon-plus%22%3E%3C%2Fi%3E%0A%0A%09%09%09%09%09%09%3C%2Fspan%3E%0A%09%09%09%09%09'
  108    35        FETCH_THIS                                       $16     
         36        FETCH_OBJ_R                                      ~17     $16, 'session'
         37        FETCH_OBJ_R                                      ~18     ~17, 'userdata'
         38        FETCH_DIM_R                                      ~19     ~18, 'user_data'
         39        FETCH_DIM_R                                      ~20     ~19, 'user_type_id'
         40        IS_EQUAL                                                 ~20, 1
         41      > JMPZ                                                     ~21, ->47
  110    42    >   ECHO                                                     '%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-info+btn-small+tooltip-info+toolinfo%22++data-placement%3D%22bottom%22+tooltip_txt%3D%22Add+Provider%22+onclick%3D%22location.href%3D%27'
         43        INIT_FCALL_BY_NAME                                       'base_url'
         44        DO_FCALL                                      0  $22     
         45        ECHO                                                     $22
         46        ECHO                                                     'dashboard%2Fadd_provider%27%22%3E%0A%09%09%09%09%09%09%09%3Ci+class%3D%22icon-user-md%22%3E%3C%2Fi%3E%0A%09%09%09%09%09%09%3C%2Fspan%3E%0A%09%09%09%09%09'
  116    47    >   ECHO                                                     '%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-info+btn-small+tooltip-info+toolinfo%22++data-placement%3D%22bottom%22+tooltip_txt%3D%22Inbox%22+onclick%3D%22location.href%3D%27'
         48        INIT_FCALL_BY_NAME                                       'base_url'
         49        DO_FCALL                                      0  $23     
         50        ECHO                                                     $23
         51        ECHO                                                     'dashboard%2Fmessages%27%22%3E%0A%09%09%09%09%09%09%09%3Ci+class%3D%22icon-envelope%22%3E%3C%2Fi%3E%0A%09%09%09%09%09%09%3C%2Fspan%3E%0A%0A%09%09%09%09%09%3C%2Fdiv%3E%0A%0A%09%09%09%09%09%3Cdiv+class%3D%22sidebar-shortcuts-mini%22+id%3D%22sidebar-shortcuts-mini%22%3E%0A%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-success%22%3E%3C%2Fspan%3E%0A%0A%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-info%22%3E%3C%2Fspan%3E%0A%0A%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-warning%22%3E%3C%2Fspan%3E%0A%0A%09%09%09%09%09%09%3Cspan+class%3D%22btn+btn-danger%22%3E%3C%2Fspan%3E%0A%09%09%09%09%09%3C%2Fdiv%3E%0A%09%09%09%09%3C%2Fdiv%3E%0A%09%09%09%09%3C%21--%23sidebar-shortcuts--%3E%0A%0A++++++++++++++++%3Cul+class%3D%22nav+nav-list%22%3E%0A++++++++++++++++++++%3Cli+class%3D%22active%22%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
  136    52        INIT_FCALL_BY_NAME                                       'base_url'
         53        DO_FCALL                                      0  $24     
         54        ECHO                                                     $24
         55        ECHO                                                     'dashboard%2Fhome%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-dashboard%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E+Dashboard+%3C%2Fspan%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++%3C%21--%3Cli%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22typography.html%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-text-width%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E+Typography+%3C%2Fspan%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fli%3E--%3E%0A%09%09%09%09%09'
  149    56        FETCH_THIS                                       $25     
         57        FETCH_OBJ_R                                      ~26     $25, 'session'
         58        FETCH_OBJ_R                                      ~27     ~26, 'userdata'
         59        FETCH_DIM_R                                      ~28     ~27, 'user_data'
         60        FETCH_DIM_R                                      ~29     ~28, 'user_type_id'
         61        FETCH_CONSTANT                                   ~30     'ROLE_ADMIN'
         62        IS_EQUAL                                                 ~29, ~30
         63      > JMPZ                                                     ~31, ->76
  151    64    >   ECHO                                                     '%0A++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++%3Ca+class%3D%22dropdown-toggle%22+href%3D%22javascript%3Avoid%280%29%3B%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-user-md%22%3E%3C%2Fi%3E%0A%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E%0A++++++++++++++++++++++++++++++++Providers%0A++++++++++++++++++++++++++++++++%3Cspan+class%3D%22badge+badge-primary+%22%3E%0A++++++++++++++++++++++++++++++++++++'
  159    65        ECHO                                                     !1
  160    66        ECHO                                                     '++++++++++++++++++++++++++++++++%3C%2Fspan%3E%0A++++++++++++++++++++++++++++%3C%2Fspan%3E%0A%0A++++++++++++++++++++++++++++%3Cb+class%3D%22arrow+icon-angle-down%22%3E%3C%2Fb%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A%0A++++++++++++++++++++++++%3Cul+class%3D%22submenu%22%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  168    67        INIT_FCALL_BY_NAME                                       'base_url'
         68        DO_FCALL                                      0  $32     
         69        ECHO                                                     $32
         70        ECHO                                                     'dashboard%2Fprovider_list%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++List+All%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++++++%3Cli%3E'
  173    71        ECHO                                                     '+%3C%21--newdash_provider%2Fadd_physician--%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  174    72        INIT_FCALL_BY_NAME                                       'base_url'
         73        DO_FCALL                                      0  $33     
         74        ECHO                                                     $33
         75        ECHO                                                     'dashboard%2Fadd_provider%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Add+A+Physician%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A%09%09%09%09%09'
  186    76    >   ECHO                                                     '++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++%3Ca+class%3D%22dropdown-toggle%22+href%3D%22%23%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-group%22%3E%3C%2Fi%3E%0A%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E%0A++++++++++++++++++++++++++++++++Patients%0A%0A++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%3Cspan+class%3D%22badge+badge-primary+%22%3E'
  196    77        ECHO                                                     !2
  197    78        ECHO                                                     '%3C%2Fspan%3E%0A++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++%3C%2Fspan%3E%0A%0A++++++++++++++++++++++++++++%3Cb+class%3D%22arrow+icon-angle-down%22%3E%3C%2Fb%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A%0A++++++++++++++++++++++++%3Cul+class%3D%22submenu%22%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  206    79        INIT_FCALL_BY_NAME                                       'base_url'
         80        DO_FCALL                                      0  $34     
         81        ECHO                                                     $34
         82        ECHO                                                     'dashboard%2Fpatient_list%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Patient+list%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3C%21--%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  213    83        ECHO                                                     'patient_search%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Patient+Search%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E--%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  220    84        INIT_FCALL_BY_NAME                                       'base_url'
         85        DO_FCALL                                      0  $35     
         86        ECHO                                                     $35
         87        ECHO                                                     'dashboard%2Fadd_patient%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Add+A+Patient%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A'
  229    88        FETCH_THIS                                       $36     
         89        FETCH_OBJ_R                                      ~37     $36, 'session'
         90        FETCH_OBJ_R                                      ~38     ~37, 'userdata'
         91        FETCH_DIM_R                                      ~39     ~38, 'user_data'
         92        FETCH_DIM_R                                      ~40     ~39, 'user_type_id'
         93        IS_EQUAL                                                 ~40, 1
         94      > JMPZ                                                     ~41, ->128
  231    95    >   ECHO                                                     '++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++%3Ca+class%3D%22dropdown-toggle%22+href%3D%22%23%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-cogs%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E+Settings+%3C%2Fspan%3E%0A%0A++++++++++++++++++++++++++++%3Cb+class%3D%22arrow+icon-angle-down%22%3E%3C%2Fb%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A%0A++++++++++++++++++++++++%3Cul+class%3D%22submenu%22%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  241    96        INIT_FCALL_BY_NAME                                       'base_url'
         97        DO_FCALL                                      0  $42     
         98        ECHO                                                     $42
         99        ECHO                                                     'dashboard%2Flocation%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Rounding+Locations%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  248   100        INIT_FCALL_BY_NAME                                       'base_url'
        101        DO_FCALL                                      0  $43     
        102        ECHO                                                     $43
        103        ECHO                                                     'dashboard%2Freferral_list%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Referral+Network%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  255   104        INIT_FCALL_BY_NAME                                       'base_url'
        105        DO_FCALL                                      0  $44     
        106        ECHO                                                     $44
        107        ECHO                                                     'dashboard%2Fcoverage_type_list%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Coverage+Types%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  262   108        INIT_FCALL_BY_NAME                                       'base_url'
        109        DO_FCALL                                      0  $45     
        110        ECHO                                                     $45
        111        ECHO                                                     'dashboard%2Fquick_list%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Quick+List%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  269   112        INIT_FCALL_BY_NAME                                       'base_url'
        113        DO_FCALL                                      0  $46     
        114        ECHO                                                     $46
        115        ECHO                                                     'dashboard%2Ftemplate%2Fmanagement_templates%22%3E+%3C%21--+changed+here+on+20%2F11%2F2013--%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Templates%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  275   116        INIT_FCALL_BY_NAME                                       'base_url'
        117        DO_FCALL                                      0  $47     
        118        ECHO                                                     $47
        119        ECHO                                                     'dashboard%2Ffee%2Fview%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Fee+Schedule%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  281   120        INIT_FCALL_BY_NAME                                       'base_url'
        121        DO_FCALL                                      0  $48     
        122        ECHO                                                     $48
        123        ECHO                                                     'dashboard%2Faccount_information%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Account+Information%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A+++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  287   124        INIT_FCALL_BY_NAME                                       'base_url'
        125        DO_FCALL                                      0  $49     
        126        ECHO                                                     $49
        127        ECHO                                                     'dashboard%2Fpreferences%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Preferences%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A'
  297   128    >   ECHO                                                     '%0A%09%09%09%09%09'
  299   129        FETCH_THIS                                       $50     
        130        FETCH_OBJ_R                                      ~51     $50, 'session'
        131        FETCH_OBJ_R                                      ~52     ~51, 'userdata'
        132        FETCH_DIM_R                                      ~53     ~52, 'user_data'
        133        FETCH_DIM_R                                      ~54     ~53, 'user_type_id'
        134        IS_EQUAL                                                 ~54, 1
        135      > JMPZ                                                     ~55, ->162
  301   136    >   ECHO                                                     '++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++%3Ca+class%3D%22dropdown-toggle%22+href%3D%22%23%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-user%22%3E%3C%2Fi%3E%0A%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E%0A++++++++++++++++++++++++++++++++Staff%0A++++++++++++++++++++++++++++++++%3Cspan+class%3D%22badge+badge-primary+%22%3E'
  307   137        ECHO                                                     !3
        138        ECHO                                                     '%3C%2Fspan%3E%0A++++++++++++++++++++++++++++%3C%2Fspan%3E%0A%0A++++++++++++++++++++++++++++%3Cb+class%3D%22arrow+icon-angle-down%22%3E%3C%2Fb%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A%0A++++++++++++++++++++++++%09%3Cul+class%3D%22submenu%22%3E%0A+++++++++++++++++++++++++++'
  328   139        ECHO                                                     '%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3C%21--%3Ca+href%3D%22'
  330   140        ECHO                                                     'admin%2Fbillers%22%3E--%3E%0A++++++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  331   141        INIT_FCALL_BY_NAME                                       'base_url'
        142        DO_FCALL                                      0  $56     
        143        ECHO                                                     $56
        144        ECHO                                                     'dashboard%2Fbiller_list%22%3E%0A++++++++++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++++++++++User+List%0A++++++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3C%21--%3Ca+href%3D%22'
  338   145        ECHO                                                     'admin%2Fadd_biller%22%3E--%3E%0A%09%09%09%09%3Ca+href%3D%22'
  339   146        INIT_FCALL_BY_NAME                                       'base_url'
        147        DO_FCALL                                      0  $57     
        148        ECHO                                                     $57
        149        ECHO                                                     'dashboard%2Fadd_biller%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Add+User%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%09%09%09%09%09%09%09%3C%2Ful%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++%3Ca+class%3D%22dropdown-toggle%22+href%3D%22%23%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-share-sign%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E+Sharing+Information+%3C%2Fspan%3E%0A%0A++++++++++++++++++++++++++++%3Cb+class%3D%22arrow+icon-angle-down%22%3E%3C%2Fb%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A%0A++++++++++++++++++++++++%3Cul+class%3D%22submenu%22%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  357   150        INIT_FCALL_BY_NAME                                       'base_url'
        151        DO_FCALL                                      0  $58     
        152        ECHO                                                     $58
        153        ECHO                                                     'dashboard%2Fmember_search%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Member+Search%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  364   154        INIT_FCALL_BY_NAME                                       'base_url'
        155        DO_FCALL                                      0  $59     
        156        ECHO                                                     $59
        157        ECHO                                                     'dashboard%2Fpending_sharing_requests%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Pending%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  371   158        INIT_FCALL_BY_NAME                                       'base_url'
        159        DO_FCALL                                      0  $60     
        160        ECHO                                                     $60
        161        ECHO                                                     'dashboard%2Fsharing%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Sharing%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A%0A++++++++++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A%09%09%09%09%09'
  382   162    >   ECHO                                                     '++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++%3Ca+class%3D%22dropdown-toggle%22+href%3D%22%23%22%3E%0A++++++++++++++++++++++++++++%3Ci+class%3D%22icon-table%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22menu-text%22%3E+Reports+%3C%2Fspan%3E%0A%0A++++++++++++++++++++++++++++%3Cb+class%3D%22arrow+icon-angle-down%22%3E%3C%2Fb%3E%0A++++++++++++++++++++++++%3C%2Fa%3E%0A%0A++++++++++++++++++++++++%3Cul+class%3D%22submenu%22%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  392   163        INIT_FCALL_BY_NAME                                       'base_url'
        164        DO_FCALL                                      0  $61     
        165        ECHO                                                     $61
        166        ECHO                                                     'dashboard%2Fdownloads%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%22icon-double-angle-right%22%3E%3C%2Fi%3E%0A++++++++++++++++++++++++++++++++++++Download%0A++++++++++++++++++++++++++++++++%3C%2Fa%3E%0A++++++++++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++++++++++%3Cli%3E%0A++++++++++++++++++++++++++++++++%3Ca+href%3D%22'
  398   167        INIT_FCALL_BY_NAME                                       'base_url'
        168        DO_FCALL                                      0  $62     
        169        ECHO                                                     $62
        170        ECHO                                                     'reports%2Freadmissions%2F%22%3E%0A++++++++++++++++++++++++++++++++++++%3Ci+class%3D%27icon-double-

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
157.67 ms | 1428 KiB | 17 Q