Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
base.php
1<?php
3
4abstract class Base
5{
6 protected $options = array();
7
8 public function __construct(array $options = array())
9 {
10 $this->options = $options;
11 }
12
13 public function getOptions()
14 {
15 return $this->options;
16 }
17
18 protected function getMetaResult()
19 {
20 return array(
21 'id' => 0,
22 'name' => '',
23 'link' => ''
24 );
25 }
26
27 public function getBBCodeText()
28 {
29
30 }
31
32}
__construct(array $options=array())
Definition base.php:8