Skip to content

Instantly share code, notes, and snippets.

@masiorama
Last active August 29, 2015 14:08
Show Gist options
  • Save masiorama/1c27fe9b7c74be56d40d to your computer and use it in GitHub Desktop.
Save masiorama/1c27fe9b7c74be56d40d to your computer and use it in GitHub Desktop.
Yii: extend child model with parent's methods like rules, attributeLabel, etc... example
function attributeLabels() {
$labels = array(
'placeOfBirth' => 'Place Of Birth',
'notes' => 'Notes',
'status' => 'Status',
'studentID' => 'Student',
'entryYear' => 'Entry Year',
);
return array_merge($labels, parent::attributeLabels());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment