2011-03-23 10:51:00 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-15 11:35:30 +02:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage admin
|
|
|
|
* @deprecated 3.0 Use {@link LeftAndMainExtension}
|
2011-03-23 10:51:00 +01:00
|
|
|
*/
|
2011-04-15 11:35:30 +02:00
|
|
|
abstract class LeftAndMainDecorator extends LeftAndMainExtension {
|
2011-03-23 10:51:00 +01:00
|
|
|
|
2011-04-15 11:35:30 +02:00
|
|
|
public function __construct() {
|
2011-05-19 00:25:15 +02: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 11:35:30 +02:00
|
|
|
parent::__construct();
|
2011-03-23 10:51:00 +01:00
|
|
|
}
|
|
|
|
|
2011-04-15 11:35:30 +02:00
|
|
|
}
|