Пример #1
0
 public function attributeNames()
 {
     $return = parent::attributeNames();
     foreach (array_keys($this->_data) as $name) {
         $return[] = $name;
     }
     return $return;
 }
Пример #2
0
 /**
  * @return array
  */
 public function attributeNames()
 {
     return array_merge(parent::attributeNames(), array_keys($this->_properties));
 }
Пример #3
0
 /**
  * attributeNames 
  * 
  * @access public
  * @return array
  */
 public function attributeNames()
 {
     return array_merge(parent::attributeNames(), array_keys($this->_dynamicFields));
 }
Пример #4
0
 /**
  * Gets a list of attribute names on the model
  * @return array the list of attribute names
  */
 public function attributeNames()
 {
     return CMap::mergeArray(array_keys($this->_attributes->toArray()), parent::attributeNames());
 }
 public function attributeNames()
 {
     return array_merge(parent::attributeNames(), UserNotificationUtil::getAllNotificationSettingAttributes());
 }