RegistrationHandler::__construct PHP Method

__construct() public method

Constructor
public __construct ( )
    function __construct()
    {
        parent::__construct();
    }

Usage Example

Example #1
0
 function __construct($id, $type)
 {
     parent::__construct($id);
     $this->payment = RegistrationPayment::load(array('order_id' => $id, 'payment_type' => $type));
     if (!$this->payment) {
         error_exit("No such payment for this registration");
     }
 }
All Usage Examples Of RegistrationHandler::__construct