/**
  * Restore references.
  *
  * @param QForm $objForm
  */
 public function Wakeup(QForm $objForm)
 {
     parent::Wakeup($objForm);
     $this->objRowParamsCallback = QControl::WakeupHelper($objForm, $this->objRowParamsCallback);
     if ($this->objColumnArray) {
         foreach ($this->objColumnArray as $objColumn) {
             $objColumn->Wakeup($objForm);
         }
     }
 }
Example #2
0
 /**
  * The object has been unserialized, so fix up pointers to embedded objects.
  * @param QForm $objForm
  */
 public function Wakeup(\QForm $objForm)
 {
     parent::Wakeup($objForm);
     $this->itemParamsCallback = \QControl::WakeupHelper($objForm, $this->itemParamsCallback);
 }
 /**
  * @param QForm $objForm
  */
 public function Wakeup(QForm $objForm)
 {
     parent::Wakeup($objForm);
     $this->objDataBinder = QControl::WakeupHelper($objForm, $this->objDataBinder);
 }
 /**
  * Restore embedded objects.
  *
  * @param QForm $objForm
  */
 public function Wakeup(QForm $objForm)
 {
     parent::Wakeup($objForm);
     $this->mixText = QControl::WakeupHelper($objForm, $this->mixText);
     $this->mixDestination = QControl::WakeupHelper($objForm, $this->mixDestination);
     $this->getVars = QControl::WakeupHelper($objForm, $this->getVars);
     $this->tagAttributes = QControl::WakeupHelper($objForm, $this->tagAttributes);
 }