This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/application/classes/Controller/Welcome.php
2014-10-04 00:39:18 +10:00

24 lines
565 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Main home page for un-authenticated users
*
* @package lnApp
* @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');
}
}
?>