Ankush Srivastava
Ankush Srivastava

Reputation: 502

Add Image Upload validation in SilverStripe CMS

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

Answers (1)

Gavin Bruce
Gavin Bruce

Reputation: 1809

You can use getCMSValidator to set required fields in the CMS.

function getCMSValidator() {
    return new RequiredFields('Image');
}

Upvotes: 2

Related Questions