2011-03-18 04:01:06 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-15 11:37:15 +02:00
|
|
|
* @package cms
|
2011-03-18 04:01:06 +01:00
|
|
|
* @subpackage model
|
2011-04-15 11:37:15 +02:00
|
|
|
* @deprecated 3.0 Use {@link SiteTreeExtension}.
|
2011-03-18 04:01:06 +01:00
|
|
|
*/
|
2011-04-15 11:37:15 +02:00
|
|
|
abstract class SiteTreeDecorator extends SiteTreeExtension {
|
2011-03-18 04:01:06 +01:00
|
|
|
|
2011-04-15 11:37:15 +02:00
|
|
|
public function __construct() {
|
2011-05-19 01:11:48 +02:00
|
|
|
// TODO Re-enable before we release 3.0 beta, for now it "breaks" too many modules
|
|
|
|
// user_error(
|
|
|
|
// 'SiteTreeDecorator is deprecated, please use SiteTreeExtension instead.',
|
|
|
|
// E_USER_NOTICE
|
|
|
|
// );
|
2011-04-15 11:37:15 +02:00
|
|
|
parent::__construct();
|
2011-03-18 04:01:06 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 11:37:15 +02:00
|
|
|
}
|