Reputation: 502
How to add image upload validation in SilverStripe CMS?
I have to upload an image from a form with required validation in SilverStripe.
Upvotes: 1
Views: 285
Reputation: 1809
You can use getCMSValidator to set required fields in the CMS.
function getCMSValidator() {
return new RequiredFields('Image');
}
Upvotes: 2