1 | <?php |
||
2 | /** |
||
3 | * @package toolkit |
||
4 | */ |
||
5 | /** |
||
6 | * AjaxPage extends the Page class to provide an object representation |
||
7 | * of a Symphony backend AJAX page. |
||
8 | * |
||
9 | * @deprecated This class will be removed in Symphony 3.0. This has been |
||
10 | * deprecated since Symphony 2.4. |
||
11 | * @see TextPage |
||
12 | * @see XMLPage |
||
13 | * @see JSONPage |
||
14 | */ |
||
15 | abstract class AjaxPage extends XMLPage |
||
16 | { |
||
17 | public function __construct() |
||
18 | { |
||
19 | if (Symphony::Log()) { |
||
20 | Symphony::Log()->pushDeprecateWarningToLog('new AjaxPage()', 'new XMLPage()'); |
||
21 | } |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
22 | parent::__construct(); |
||
23 | } |
||
24 | } |
||
25 |