Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/lpost.delivery/lib/Order/Property/ |
Upload File : |
<?php namespace Lpost\Delivery\Order\Property; abstract class Property implements IProperty { const PROPERTY_TYPE_SELECT = "SELECT"; const PROPERTY_TYPE_STRING = "STRING"; const PROPERTY_TYPE_DATE = "DATE"; protected $groupId; protected $code; protected $name; protected $type; protected $personId; protected $util; protected $active; protected array $relationDeliveryIds = []; protected array $getRelationPaymentIds = []; protected $value; private $required; /** * @param $text */ public function setName($text) { $this->name = $text; } public function getName(): string { return $this->name; } public function setCode($code) { $this->code = $code; } public function getCode(): string { return $this->code; } public function setType($type) { $this->type = $type; } public function getType() { return $this->type; } public function setPersonId($id) { $this->personId = $id; } public function getPersonId() { return $this->personId; } public function setGroupId($id) { $this->groupId = $id; } /** * @return integer */ public function getGroupId(): int { return $this->groupId; } /** * @param $active * @return void */ public function setActive($active) { $this->active = $active; } /** * @return mixed */ public function getActive() { return $this->active; } /** * @param $util */ public function setUtil($util) { $this->util = $util; } /** * @return mixed */ public function getUtil() { return $this->util; } public function setRelationDeliveryIds(array $ids) { $this->relationDeliveryIds = $ids; } public function getRelationDeliveryIds(): array { return $this->relationDeliveryIds; } public function setRelationPaymentIds(array $ids) { $this->getRelationPaymentIds = $ids; } public function getRelationPaymentIds(): array { return $this->getRelationPaymentIds; } public function setValue($value) { $this->value = $value; } public function getValue() { return $this->value; } public function setRequired($value) { return $this->required = $value; } public function getRequired() { return $this->required; } }