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/user/payment.php

30 lines
741 B
PHP
Raw Normal View History

2011-08-02 06:20:11 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class provides User Payment functions
*
* @package OSB
* @subpackage Payment
* @category Controllers/User
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
2011-08-26 01:16:48 +00:00
class Controller_User_Payment extends Controller_TemplateDefault_User {
protected $secure_actions = array(
2011-08-02 06:20:11 +00:00
'list'=>TRUE,
);
/**
* Show a payments received
*/
public function action_list() {
Block::add(array(
2011-08-26 01:16:48 +00:00
'title'=>sprintf('%s: %s - %s',_('Payments For'),$this->ao->accnum(),$this->ao->name(TRUE)),
2011-08-02 06:20:11 +00:00
'body'=>View::factory('payment/user/list')
2011-08-26 01:16:48 +00:00
->set('payments',$this->ao->payment->find_all()),
2011-08-02 06:20:11 +00:00
));
}
}
?>