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

24 lines
565 B
PHP
Raw Normal View History

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