23 lines
470 B
PHP
23 lines
470 B
PHP
<?php
|
|
if (!defined('BASEPATH')) exit('No direct script access allowed');
|
|
|
|
/*
|
|
* InvoicePlane
|
|
*
|
|
* @author InvoicePlane Developers & Contributors
|
|
* @copyright Copyright (c) 2012 - 2017 InvoicePlane.com
|
|
* @license https://invoiceplane.com/license.txt
|
|
* @link https://invoiceplane.com
|
|
*/
|
|
|
|
/**
|
|
* Class Admin_Controller
|
|
*/
|
|
class Admin_Controller extends User_Controller
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct('user_type', 1);
|
|
}
|
|
}
|