作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在 CMS 中创建必填字段:
class Documents extends DataObject {
private static $db = array(
'DocType' => 'Text',
'DocTitle' => 'Text',
'DocNumber' => 'Text'
);
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields = FieldList::create(TabSet::create('Root'));
$fields->addFieldsToTab('Root.Main', array(
DropdownField::create('DocType','Document Type'),
DropdownField::create('DocStatus','Document Status'),
TextField::create('DocNumber','Document Number'),
...
RequiredFields::create(array('DocType','DocTitle','DocNumber'));
));
return $fields;
}
但在我的 SilverStripe 错误日志中,我得到以下信息:
"Uncaught Exeption: the method 'getname' doesn't exist on RequiredFields or the method is not public".
如何在 SilverStripe CMS 中创建必填字段?
最佳答案
在 CMS 中,我们可以通过声明 getCMSValidator
函数并返回 RequiredFields
来声明必填字段:
public function getCMSValidator()
{
return RequiredFields::create(
'DocType',
'DocTitle',
'DocNumber'
);
}
关于php - 如何在 CMS 中创建必填字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45673510/
我是一名优秀的程序员,十分优秀!