Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
unpack.php
1<?php
3
6
7class Unpack extends Main\Result
8{
10 protected $tpl;
11
13 protected $documentFields;
14
17
22 public function setTpl(Tpl $tpl)
23 {
24 $this->tpl = $tpl;
25 return $this;
26 }
27
31 public function getTpl()
32 {
33 return $this->tpl;
34 }
35
39 public function getDocumentFields()
40 {
42 }
43
48 public function setDocumentFields(array $documentFields)
49 {
50 $this->documentFields = $documentFields;
51 return $this;
52 }
53
57 public function getRequiredApplications()
58 {
60 }
61
67 {
68 $this->requiredApplications = $requiredApplications;
69 return $this;
70 }
71}