Moved to PHP folder

This commit is contained in:
2019-06-30 22:04:19 -04:00
parent 6822968785
commit b198cd212f
433 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Userauth
{
public function __construct()
{
$this->CI =& get_instance();
$this->CI->load->library('session');
}
public function logged_in(){
if ( ! $this->CI->session->userdata('user_id'))
{
redirect('admin');
}
}
public function logged_admin(){
if (! $this->CI->session->userdata('user_id') && $this->CI->session->userdata('user_type') != "admin")
{
redirect('admin');
}
}
}