17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1547 Views |
-
Disable page delete

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?
-
Re: Disable page delete

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");
}
| 1547 Views | ||
|
Page:
1
|
Go to Top |


