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.

20 lines
501 B
PHP
Raw Normal View History

2014-06-30 14:22:57 +10:00
<?php defined('SYSPATH') or die('No direct script access.');
2014-07-09 13:04:56 +10:00
class Controller_Welcome extends Controller_TemplateDefault {
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() {
if (! Kohana::$config->load('config')->appname)
throw HTTP_Exception::factory(500,'Site not setup!');
$output = '';
2014-06-30 14:22:57 +10:00
2014-07-09 13:04:56 +10:00
$output = View::factory('pages/welcome');
Style::factory()
->type('file')
->data('media/css/pages/welcome.css');
$this->template->content = $output;
}
2014-06-30 14:22:57 +10:00
} // End Welcome