Public Member Functions | Data Fields

ilObjPaymentSettings Class Reference

Inheritance diagram for ilObjPaymentSettings:
Collaboration diagram for ilObjPaymentSettings:

Public Member Functions

 ilObjPaymentSettings ($a_id=0, $a_call_by_reference=true)
 Constructor public.
 update ()
 update object data
 initPaymentVendorsObject ()

Data Fields

 $payment_vendors_obj = null

Detailed Description

Definition at line 36 of file class.ilObjPaymentSettings.php.


Member Function Documentation

ilObjPaymentSettings::ilObjPaymentSettings ( a_id = 0,
a_call_by_reference = true 
)

Constructor public.

Parameters:
integer reference_id or object_id
boolean treat the id as reference_id (true) or object_id (false)

Definition at line 46 of file class.ilObjPaymentSettings.php.

References ilObject::ilObject().

        {
                #define("ILIAS_MODULE","payment");
                #define("KEEP_IMAGE_PATH",1);

                $this->type = "pays";
                $this->ilObject($a_id,$a_call_by_reference);

                $this->lng->loadLanguageModule('crs');
                $this->lng->loadLanguageModule('payment');

        }

Here is the call graph for this function:

ilObjPaymentSettings::initPaymentVendorsObject (  ) 

Definition at line 78 of file class.ilObjPaymentSettings.php.

        {
                if(!is_object($this->payment_vendors_obj))
                {
                        include_once "./payment/classes/class.ilPaymentVendors.php";

                        $this->payment_vendors_obj =& new ilPaymentVendors();
                }
                return true;
        }

ilObjPaymentSettings::update (  ) 

update object data

public

Returns:
boolean

Reimplemented from ilObject.

Definition at line 66 of file class.ilObjPaymentSettings.php.

        {
                if (!parent::update())
                {                       
                        return false;
                }

                // put here object specific stuff
                
                return true;
        }


Field Documentation

ilObjPaymentSettings::$payment_vendors_obj = null

Definition at line 38 of file class.ilObjPaymentSettings.php.


The documentation for this class was generated from the following file: