Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
base.php
1<?php
2
3
5
6
7abstract class Base
8{
9 protected $appUrl;
10
11 public function __construct(\Bitrix\Sale\Exchange\Integration\App\Base $app)
12 {
13 $this->appUrl = $app->getAppUrl();
14 }
15
16 protected function getAppUrl()
17 {
18 return $this->appUrl;
19 }
20
21 abstract public function getTitle();
22
23 abstract public function getGroupName();
24
25 abstract public function getPlacement();
26
27 abstract public function getPlacmentHandler();
28}
__construct(\Bitrix\Sale\Exchange\Integration\App\Base $app)
Definition base.php:11