mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
60860cc1b9
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@56212 467b73ca-7a2a-4603-9d3b-597d59a354a9
31 lines
660 B
PHP
31 lines
660 B
PHP
<?php
|
|
/**
|
|
* Add extension that can be added to an object with Object::add_extension().
|
|
* For DataObject extensions, use DataObjectDecorator
|
|
*
|
|
* @package sapphire
|
|
* @subpackage core
|
|
*/
|
|
abstract class Extension extends Object {
|
|
/**
|
|
* This is used by extensions designed to be applied to controllers.
|
|
* It works the same way as {@link Controller::$allowed_actions}.
|
|
*/
|
|
public static $allowed_actions = null;
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
}
|
|
|
|
?>
|