17 lines
483 B
PHP
17 lines
483 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* This class provides the default template controller for rendering pages.
|
|
*
|
|
* @package PTA
|
|
* @subpackage Page/Template
|
|
* @category Controllers
|
|
* @author Deon George
|
|
* @copyright (c) 2010 phpTSMadmin Development Team
|
|
* @license http://phptsmadmin.sf.net/license.html
|
|
*/
|
|
abstract class Controller_TemplateDefault extends lnApp_Controller_TemplateDefault {
|
|
protected $auth_required = TRUE;
|
|
}
|
|
?>
|