ILIAS  Release_4_1_x_branch Revision 61804
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.ilPurchaseBillGUI.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2010 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
13 include_once './Services/Payment/classes/class.ilPurchaseBaseGUI.php';
14 include_once './Services/Payment/classes/class.ilPayMethods.php';
15 
17 {
18  var $user_obj;
20 
21  public function ilPurchaseBillGUI($user_obj)
22  {
23  $this->user_obj = $user_obj;
24  $this->pay_method = ilPayMethods::_getIdByTitle('bill');
25 
26  parent::__construct($user_obj,$this->pay_method);
27  }
28 }
29 ?>