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/payment/classes/Controller/Reseller/Payment.php

30 lines
761 B
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides Reseller Payment functions
*
* @package Payment
* @category Controllers/Reseller
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Controller_Reseller_Payment extends Controller_Payment {
protected $secure_actions = array(
'list'=>TRUE,
);
/**
* Show a list of payments
*/
public function action_list() {
$this->meta->title = 'R|Customer Payments';
Block::factory()
->title('Customer Payments')
->title_icon($this->icon)
->body(View::factory('payment/reseller/list')->set('o',ORM::factory('Payment')->where_authorised($this->ao)->find_all()));
}
}
?>