Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
container.php
1<?php
3
5
12{
13 protected $entityId;
14 protected $copiedEntityId;
15 protected $parentId;
16 protected $dictionary;
17
18 public function __construct($entityId)
19 {
20 $this->entityId = (int) $entityId;
21
22 $this->dictionary = new Dictionary();
23 }
24
30 public function getEntityId()
31 {
32 return $this->entityId;
33 }
34
40 public function setCopiedEntityId($id)
41 {
42 $this->copiedEntityId = (int) $id;
43 }
44
50 public function getCopiedEntityId()
51 {
53 }
54
60 public function setParentId($parentId)
61 {
62 $this->parentId = (int) $parentId;
63 }
64
70 public function getParentId()
71 {
72 return $this->parentId;
73 }
74
81 {
82 $this->dictionary = $dictionary;
83 }
84
89 public function getDictionary()
90 {
91 return $this->dictionary;
92 }
93}
setDictionary(Dictionary $dictionary)
Definition container.php:80