mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
015a7dec45
Added doWrite option to duplicate, so that writing can be disabled on a duplicated node Added augmentBeforeWrite, so that extensions can do more onBeforeWrite stuff Added set_context_obj() so that objects can give some 'context' to the decorators during particular operations Created a super-class of DataObjectDecorator, Extension that isn't specifically targetted at DataObjects git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@40226 467b73ca-7a2a-4603-9d3b-597d59a354a9
24 lines
430 B
PHP
24 lines
430 B
PHP
<?php
|
|
|
|
/**
|
|
* Add extension that can be added to an object with Object::add_extension().
|
|
* For DataObject extensions, use DataObjectDecorator
|
|
*/
|
|
|
|
abstract class Extension extends Object {
|
|
/**
|
|
* The DataObject that owns this decorator.
|
|
* @var DataObject
|
|
*/
|
|
protected $owner;
|
|
|
|
/**
|
|
* Set the owner of this decorator.
|
|
* @param DataObject $owner
|
|
*/
|
|
function setOwner(Object $owner) {
|
|
$this->owner = $owner;
|
|
}
|
|
}
|
|
|
|
?>
|