Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
factory.php
1<?php
2
3
5
6
7class Factory
8{
9 static public function create($type, $fields)
10 {
11 if($type == Type::DEAL_DETAIL_TOOLBAR)
12 {
13 return new PlacementDeal($fields);
14 }
15 elseif ($type == Type::DEFAULT_TOOLBAR)
16 {
17 return new PlacementDefault($fields);
18 }
19 else
20 {
21 throw new \Bitrix\Main\NotSupportedException("AppPlacementType: '".$type."' is not supported in current context");
22 }
23 }
24}