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.
59 lines
1.2 KiB
59 lines
1.2 KiB
7 years ago
|
<?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 groupping,
|
||
|
* 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
|
||
|
*/
|
||
|
|
||
|
namespace App\Controllers\Account;
|
||
|
|
||
|
use CodeIgniter\Controller;
|
||
|
use App\Libraries\Aauth;
|
||
|
use App\Models\Aauth\UserModel;
|
||
|
|
||
|
/**
|
||
|
* Aauth Accont/Home Controller
|
||
|
*
|
||
|
* @package CodeIgniter-Aauth
|
||
|
*/
|
||
|
class Home extends Controller
|
||
|
{
|
||
|
/**
|
||
|
* Constructor
|
||
|
*/
|
||
|
public function __construct()
|
||
|
{
|
||
7 years ago
|
$this->aauth = new Aauth();
|
||
|
helper('aauth');
|
||
7 years ago
|
|
||
|
if (! $this->aauth->isLoggedIn())
|
||
|
{
|
||
|
redirect()->to('/');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Index
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
public function index()
|
||
|
{
|
||
7 years ago
|
$data['user'] = $this->aauth->getUser();
|
||
7 years ago
|
|
||
7 years ago
|
echo view('Templates/Header');
|
||
|
echo view('Account/Home', $data);
|
||
|
echo view('Templates/Footer');
|
||
7 years ago
|
}
|
||
|
}
|