mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
3a1c2df4e7
API CHANGE: Renamed LeftAndMainDecorator to LeftAndMainExtension. MINOR: Replaced all references to decorators with extension.
17 lines
363 B
PHP
17 lines
363 B
PHP
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage admin
|
|
* @deprecated 3.0 Use {@link LeftAndMainExtension}
|
|
*/
|
|
abstract class LeftAndMainDecorator extends LeftAndMainExtension {
|
|
|
|
public function __construct() {
|
|
user_error(
|
|
'LeftAndMainDecorator is deprecated, please use LeftAndMainExtension instead.',
|
|
E_USER_NOTICE
|
|
);
|
|
parent::__construct();
|
|
}
|
|
|
|
} |