2011-03-23 22:51:00 +13:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-15 19:35:30 +10:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage admin
|
|
|
|
* @deprecated 3.0 Use {@link LeftAndMainExtension}
|
2011-03-23 22:51:00 +13:00
|
|
|
*/
|
2011-04-15 19:35:30 +10:00
|
|
|
abstract class LeftAndMainDecorator extends LeftAndMainExtension {
|
2011-03-23 22:51:00 +13:00
|
|
|
|
2011-04-15 19:35:30 +10:00
|
|
|
public function __construct() {
|
2011-05-19 10:25:15 +12:00
|
|
|
// TODO Re-enable before we release 3.0 beta, for now it "breaks" too many modules
|
|
|
|
// user_error(
|
|
|
|
// 'LeftAndMainDecorator is deprecated, please use LeftAndMainExtension instead.',
|
|
|
|
// E_USER_NOTICE
|
|
|
|
// );
|
2011-04-15 19:35:30 +10:00
|
|
|
parent::__construct();
|
2011-03-23 22:51:00 +13:00
|
|
|
}
|
|
|
|
|
2011-04-15 19:35:30 +10:00
|
|
|
}
|