public function attributeNames() { $return = parent::attributeNames(); foreach (array_keys($this->_data) as $name) { $return[] = $name; } return $return; }
/** * @return array */ public function attributeNames() { return array_merge(parent::attributeNames(), array_keys($this->_properties)); }
/** * attributeNames * * @access public * @return array */ public function attributeNames() { return array_merge(parent::attributeNames(), array_keys($this->_dynamicFields)); }
/** * 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()); }