2011-02-07 07:48:44 +01:00
|
|
|
# Versioned
|
|
|
|
|
|
|
|
The Versioned class is a `[api:DataObject]` that adds versioning and staging capabilities to the objects.
|
|
|
|
|
|
|
|
## Trapping the publication event
|
|
|
|
|
|
|
|
Sometimes, you'll want to do something whenever a particular kind of page is published. This example sends an email
|
|
|
|
whenever a blog entry has been published.
|
|
|
|
|
|
|
|
:::php
|
|
|
|
class Page extends SiteTree {
|
|
|
|
// ...
|
2012-01-30 23:13:42 +01:00
|
|
|
public function onAfterPublish() {
|
2011-02-07 07:48:44 +01:00
|
|
|
mail("sam@silverstripe.com", "Blog published", "The blog has been published");
|
|
|
|
parent::onAfterPublish();
|
|
|
|
}
|
2011-03-08 22:05:51 +01:00
|
|
|
}
|