Esempio n. 1
0
 /**
  * Update existsing cell
  *
  * @param \XLite\Model\SessionCell $cell  Cell to update
  * @param mixed                    $value Value to set
  *
  * @return void
  */
 public function updateCell(\XLite\Model\SessionCell $cell, $value)
 {
     $cell->setValue($value);
     return $this->update($cell);
 }
 /**
  * {@inheritDoc}
  */
 public function setValue($value)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'setValue', array($value));
     return parent::setValue($value);
 }