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.

24 lines
579 B
PHP
Raw Normal View History

2014-06-30 14:22:57 +10:00
<?php defined('SYSPATH') or die('No direct script access.');
2014-10-04 00:39:18 +10:00
/**
* Main home page for un-authenticated users
*
2014-10-22 22:22:47 +11:00
* @package Membership Database
2014-10-04 00:39:18 +10:00
* @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 {
2014-09-01 23:01:01 +10:00
protected $auth_required = FALSE;
2014-06-30 14:22:57 +10:00
2014-07-09 13:04:56 +10:00
public function action_index() {
Style::factory()
->type('file')
->data('media/css/pages/welcome.css');
2014-10-04 00:39:18 +10:00
$this->template->content = View::factory('pages/welcome');
2014-07-09 13:04:56 +10:00
}
2014-10-04 00:39:18 +10:00
}
?>