Exemplo n.º 1
0
 /**
  * Checks if a key is legitimate or should be added to
  * the field value collection
  */
 protected function isKeyAllowed($key)
 {
     /*
      * Let the core columns through
      */
     if ($key == 'namespace' || $key == 'group') {
         return true;
     }
     return parent::isKeyAllowed($key);
 }