_getZappableSleepProps() protected method

Reimplement in derived classes to add new variables, but remember to also to call the parent implementation first.
protected _getZappableSleepProps ( &$exprops )
Exemplo n.º 1
0
 /**
  * Returns an array with the names of all variables of this object that should NOT be serialized
  * because their value is the default one or useless to be cached for the next page loads.
  * Reimplement in derived classes to add new variables, but remember to  also to call the parent
  * implementation first.
  */
 protected function _getZappableSleepProps(&$exprops)
 {
     parent::_getZappableSleepProps($exprops);
     if ($this->_horizontalAlign === null) {
         $exprops[] = "TTableItemStyle_horizontalAlign";
     }
     if ($this->_verticalAlign === null) {
         $exprops[] = "TTableItemStyle_verticalAlign";
     }
     if ($this->_wrap === null) {
         $exprops[] = "TTableItemStyle_wrap";
     }
 }
Exemplo n.º 2
0
 /**
  * Returns an array with the names of all variables of this object that should NOT be serialized
  * because their value is the default one or useless to be cached for the next page loads.
  * Reimplement in derived classes to add new variables, but remember to  also to call the parent
  * implementation first.
  */
 protected function _getZappableSleepProps(&$exprops)
 {
     parent::_getZappableSleepProps($exprops);
     if ($this->_backImageUrl === null) {
         $exprops[] = "TPanelStyle_backImageUrl";
     }
     if ($this->_direction === null) {
         $exprops[] = "TPanelStyle_direction";
     }
     if ($this->_horizontalAlign === null) {
         $exprops[] = "TPanelStyle_horizontalAlign";
     }
     if ($this->_scrollBars === null) {
         $exprops[] = "TPanelStyle_scrollBars";
     }
     if ($this->_wrap === null) {
         $exprops[] = "TPanelStyle_wrap";
     }
 }
Exemplo n.º 3
0
 /**
  * Returns an array with the names of all variables of this object that should NOT be serialized
  * because their value is the default one or useless to be cached for the next page loads.
  * Reimplement in derived classes to add new variables, but remember to  also to call the parent
  * implementation first.
  */
 protected function _getZappableSleepProps(&$exprops)
 {
     parent::_getZappableSleepProps($exprops);
     if ($this->_backImageUrl === null) {
         $exprops[] = "TTableStyle_backImageUrl";
     }
     if ($this->_horizontalAlign === null) {
         $exprops[] = "TTableStyle_horizontalAlign";
     }
     if ($this->_cellPadding === null) {
         $exprops[] = "TTableStyle_cellPadding";
     }
     if ($this->_cellSpacing === null) {
         $exprops[] = "TTableStyle_cellSpacing";
     }
     if ($this->_gridLines === null) {
         $exprops[] = "TTableStyle_gridLines";
     }
     if ($this->_borderCollapse === null) {
         $exprops[] = "TTableStyle_borderCollapse";
     }
 }