Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

Disable page delete


Go to End


2 Posts   3304 Views

Avatar
Sec

Community Member, 13 Posts

11 December 2008 at 10:04pm

Hello!

I have a site structure that would benefit the option that admins could not delete certain page types from the cms in order to keep the intended functionality. Is this possible?

Avatar
Blackdog

Community Member, 156 Posts

11 December 2008 at 11:19pm

Put this in your Page model and replace PageType withy your page type.

function canDelete() {
return false;
}

Also try this one if you don't want them to create any more pages with that type.

function canCreate() {
return !DataObject::get_one("PageType");
}