ENHANCEMENT Allow BlogEntry::getCMSFields() fields to be manipulated on decorators

This commit is contained in:
Sean Harvey 2009-09-24 23:10:54 +00:00
parent 549603e459
commit c920045933
1 changed files with 3 additions and 0 deletions

View File

@ -86,6 +86,9 @@ class BlogEntry extends Page {
}
$fields->addFieldToTab("Root.Content.Main", new TextField("Tags", _t("BlogEntry.TS", "Tags (comma sep.)")),"Content");
$this->extend('updateCMSFields', $fields);
return $fields;
}