如何在CustomSiteConfig中爲textareafield設置默認值? 這不工作:Silverstripe 2.4默認值textareafield CustomSiteConfig
class CustomSiteConfig extends DataObjectDecorator {
function extraStatics() {
return array(
'db' => array(
'MyText' => 'Text'),
'defaults' => array(
'MyText' => 'Bla Bla'),
'has_one' => array(
'Logo' => 'Image')
);
}
public function updateCMSFields(FieldSet $fields) {
$fields->addFieldToTab("Root.Main", new TextareaField("MyText", "My Text"));
$fields->addFieldToTab("Root.Main", new ImageField('Logo', 'Logo'));
}