22 lines
394 B
PHP
Executable File
22 lines
394 B
PHP
Executable File
<?php
|
|
|
|
|
|
|
|
if (!function_exists('get_branch_id')) {
|
|
function get_branch_id()
|
|
{
|
|
$session = \Config\Services::session();
|
|
$session->remove('branch_id');
|
|
}
|
|
}
|
|
|
|
if (!function_exists('check_session')) {
|
|
function check_session()
|
|
{
|
|
// $ci =& get_instance();
|
|
$session = \Config\Services::session();
|
|
return $session->get('isLoggedIn');
|
|
}
|
|
}
|
|
|
|
?>
|