Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
base.php
1<?php
3
6
12abstract class Base
13{
15 protected $order;
16
20 public function __construct()
21 {
22 }
23
31 public function restoreOrder($archivedOrder = array())
32 {
33 if (!empty($archivedOrder))
34 {
35 return $this->loadOrder($archivedOrder);
36 }
37 else
38 {
39 throw new Main\ArgumentNullException('ORDER_DATA');
40 }
41 }
42
43 abstract protected function loadOrder($archivedOrder);
44}
restoreOrder($archivedOrder=array())
Definition base.php:31