1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
propertyrelation.php
См. документацию.
1<?php
8
9
10namespace Bitrix\Iblock\ORM\Fields;
11
12
13use Bitrix\Iblock\ORM\PropertyValue;
14use Bitrix\Iblock\Property;
15use Bitrix\Main\Cli\OrmAnnotateCommand;
16
18{
20 protected $iblockElementProperty;
21
25 public function getIblockElementProperty()
26 {
27 return $this->iblockElementProperty;
28 }
29
35 public function configureIblockElementProperty($property)
36 {
37 $this->iblockElementProperty = $property;
38
39 return $this;
40 }
41
42 public function getSetterTypeHint()
43 {
44 return parent::getSetterTypeHint()
45 .'|\\'.PropertyValue::class
46 .'|'.$this->getRefEntity()->getField('VALUE')->getSetterTypeHint();
47 }
48}
configureIblockElementProperty($property)
Определения propertyrelation.php:35
trait PropertyRelation
Определения propertyrelation.php:18
getIblockElementProperty()
Определения propertyrelation.php:25