130a87aa9a
Minor updates for ADSL services Updates to Sort::MAsort() Move core OSB items under application/ Moved ACCOUNT functions under application Minor updates to task
73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
<?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
|
|
*/
|
|
class Controller_User_Service extends Controller_TemplateDefault_User {
|
|
protected $secure_actions = array(
|
|
'list'=>TRUE,
|
|
'view'=>TRUE,
|
|
);
|
|
|
|
/**
|
|
* Show a list of services
|
|
*/
|
|
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',
|
|
)),
|
|
));
|
|
}
|
|
|
|
public function action_view() {
|
|
$output = '';
|
|
|
|
if (! $id = $this->request->param('id')) {
|
|
if (isset($_POST['id']) AND is_array($_POST['id']))
|
|
Table::post('service_view','id');
|
|
|
|
list($id,$output) = Table::page('service_view');
|
|
|
|
} else {
|
|
$id = $this->request->param('id');
|
|
}
|
|
|
|
$so = ORM::factory('service',$id);
|
|
|
|
if (! $so->loaded() OR ! Auth::instance()->authorised($so->account_id,$so->affiliate_id)) {
|
|
$this->template->content = 'Unauthorised or doesnt exist?';
|
|
return FALSE;
|
|
}
|
|
|
|
$output .= View::factory('service/user/view')
|
|
->set('so',$so);
|
|
|
|
Block::add(array(
|
|
'title'=>sprintf('%s: %s',$so->id(),$so->service_name()),
|
|
'body'=>$output,
|
|
));
|
|
}
|
|
}
|
|
?>
|