在 SilverStripe CMS 中添加图片上传验证
Add Image Upload validation in SilverStripe CMS
如何在 SilverStripe CMS 中添加图片上传验证?
我必须从 SilverStripe 中需要验证的表单上传图像。
您可以使用 getCMSValidator 在 CMS 中设置必填字段。
function getCMSValidator() {
return new RequiredFields('Image');
}
如何在 SilverStripe CMS 中添加图片上传验证?
我必须从 SilverStripe 中需要验证的表单上传图像。
您可以使用 getCMSValidator 在 CMS 中设置必填字段。
function getCMSValidator() {
return new RequiredFields('Image');
}