MINOR Partially merged r66168 from branches/2.3 - the last merge was ignoring SiteTreeDecorator.php file which was necessary for the new googlesitemaps module compatiblity

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@75380 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-04-28 01:40:24 +00:00
parent 405a7905e2
commit c07f20b9a7

View File

@ -0,0 +1,31 @@
<?php
/**
* Plug-ins for additional functionality in your SiteTree classes.
*
* @package sapphire
* @subpackage model
*/
abstract class SiteTreeDecorator extends DataObjectDecorator {
function onBeforePublish(&$original) {
}
function onAfterPublish(&$original) {
}
function onBeforeUnpublish() {
}
function onAfterUnpublish() {
}
function canAddChildren($member) {
}
function canPublish($member) {
}
}
?>