You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
819 B
37 lines
819 B
<?php |
|
/** |
|
* CodeIgniter-Aauth |
|
* |
|
* Aauth is a User Authorization Library for CodeIgniter 4.x, which aims to make |
|
* easy some essential jobs such as login, permissions and access operations. |
|
* Despite ease of use, it has also very advanced features like grouping, |
|
* access management, public access etc.. |
|
* |
|
* @package CodeIgniter-Aauth |
|
* @author Magefly Team |
|
* @copyright 2014-2017 Emre Akay |
|
* @copyright 2018 Magefly |
|
* @license https://opensource.org/licenses/MIT MIT License |
|
* @link https://github.com/magefly/CodeIgniter-Aauth |
|
*/ |
|
|
|
use App\Libraries\Aauth; |
|
|
|
/** |
|
* Aauth Helper |
|
* |
|
* @package CodeIgniter-Aauth |
|
*/ |
|
if (! function_exists('is_loggedin')) |
|
{ |
|
/** |
|
* Is logged in |
|
* |
|
* @return boolean |
|
*/ |
|
function is_loggedin() |
|
{ |
|
$aauth = new Aauth(); |
|
return $aauth->isLoggedIn(); |
|
} |
|
}
|
|
|