2007-07-19 10:40:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-15 19:35:30 +10:00
|
|
|
* @package sapphire
|
2008-02-25 02:10:37 +00:00
|
|
|
* @subpackage model
|
2011-04-15 19:35:30 +10:00
|
|
|
* @deprecated 3.0 Use {@link DataExtension}.
|
2007-07-19 10:40:28 +00:00
|
|
|
*/
|
2011-04-15 19:35:30 +10:00
|
|
|
abstract class DataObjectDecorator extends DataExtension {
|
2007-09-16 00:20:31 +00: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(
|
|
|
|
// 'DataObjectDecorator is deprecated, please use DataExtension instead.',
|
|
|
|
// E_USER_NOTICE
|
|
|
|
// );
|
2011-04-15 19:35:30 +10:00
|
|
|
parent::__construct();
|
2008-12-17 22:38:47 +00:00
|
|
|
}
|
2008-11-01 23:00:50 +00:00
|
|
|
|
2011-04-15 19:35:30 +10:00
|
|
|
}
|