24 lines
579 B
PHP
24 lines
579 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
|
|
/**
|
|
* Main home page for un-authenticated users
|
|
*
|
|
* @package Membership Database
|
|
* @category Controllers
|
|
* @author Deon George
|
|
* @copyright (c) 2009-2013 Deon George
|
|
* @license http://dev.leenooks.net/license.html
|
|
*/
|
|
class Controller_Welcome extends lnApp_Controller_Welcome {
|
|
protected $auth_required = FALSE;
|
|
|
|
public function action_index() {
|
|
Style::factory()
|
|
->type('file')
|
|
->data('media/css/pages/welcome.css');
|
|
|
|
$this->template->content = View::factory('pages/welcome');
|
|
}
|
|
}
|
|
?>
|