Example #1
0
File: User.php Project: saiber/www
 public function __destruct()
 {
     return parent::destruct(array('defaultShippingAddressID', 'defaultBillingAddressID'));
 }
Example #2
0
 public function __destruct()
 {
     foreach ($this->orderedItems as $item) {
         $item->__destruct();
         $item->destruct();
     }
     $this->orderedItems = array();
     foreach ($this->removedItems as $item) {
         $item->__destruct();
         $item->destruct();
     }
     $this->removedItems = array();
     $this->taxes = array();
     if (isset($this->shipments)) {
         foreach ($this->shipments as $shipment) {
             $shipment->__destruct();
             $shipment->destruct();
         }
     }
     $this->shipments = array();
     parent::destruct(array('userID', 'billingAddressID', 'shippingAddressID'));
 }
Example #3
0
 public function __destruct()
 {
     parent::destruct(array('stateID'));
 }
Example #4
0
 public function __destruct()
 {
     parent::destruct(array('userID', 'userAddressID'));
 }