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/modules/service/classes/controller/user/service.php

63 lines
1.5 KiB
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides User Service functions
*
* @package OSB
* @subpackage Service
* @category Controllers/User
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
2010-11-29 22:41:08 +00:00
*/
2011-08-26 01:16:48 +00:00
class Controller_User_Service extends Controller_TemplateDefault_User {
protected $secure_actions = array(
2010-11-29 22:41:08 +00:00
'list'=>TRUE,
'view'=>TRUE,
);
/**
* Show a list of services
2010-11-29 22:41:08 +00:00
*/
public function action_list() {
Block::add(array(
'title'=>sprintf('%s: %s - %s',_('Services For'),$this->ao->accnum(),$this->ao->name(TRUE)),
'body'=>Table::display(
$this->ao->service->find_all(),
25,
array(
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
'service_name()'=>array('label'=>'Details'),
'recur_schedule'=>array('label'=>'Billing'),
'price'=>array('label'=>'Price','class'=>'right'),
'active'=>array('label'=>'Active'),
),
array(
'page'=>TRUE,
'type'=>'select',
'form'=>'user/service/view',
)),
2010-11-29 22:41:08 +00:00
));
}
public function action_view() {
list($id,$output) = Table::page(__METHOD__);
2010-11-29 22:41:08 +00:00
$so = ORM::factory('service',$id);
if (! $so->loaded() OR ! Auth::instance()->authorised($so->account_id,$so->affiliate_id)) {
2011-07-14 09:09:03 +00:00
$this->template->content = 'Unauthorised or doesnt exist?';
return FALSE;
2010-11-29 22:41:08 +00:00
}
$output .= View::factory($this->viewpath())
->set('so',$so);
2010-11-29 22:41:08 +00:00
Block::add(array(
'title'=>sprintf('%s: %s',$so->id(),$so->service_name()),
'body'=>$output,
2010-11-29 22:41:08 +00:00
));
}
}
?>