Exemplo n.º 1
0
 /**
  * Unserialises the parameters when loading the record
  * @param AkeebasubsTableLevel $result
  * @return bool
  */
 public function onAfterLoad(&$result)
 {
     // Convert params to an array
     if (!is_array($this->params)) {
         if (!empty($this->params)) {
             $this->params = json_decode($this->params, true);
         }
     }
     if (is_null($this->params) || empty($this->params)) {
         $this->params = array();
     }
     return parent::onAfterLoad($result);
 }