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.
khosb/application/classes/Controller/User/Welcome.php

23 lines
551 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Main home page
*
* @package OSB
* @category Controllers/User
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Controller_User_Welcome extends Controller_Welcome {
protected $auth_required = TRUE;
protected $secure_actions = array(
'index'=>TRUE,
);
public function action_index() {
$this->template->content = View::factory('welcome/user/view')->set('o',$this->ao);
}
}
?>