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/main/lib/phonenumber/tools/ |
Upload File : |
<?php namespace Bitrix\Main\PhoneNumber\Tools; class XmlField { /** @var string */ protected $name = ''; /** @var bool */ protected $multiple = false; /** @var \Bitrix\Main\PhoneNumber\Tools\XmlParser */ protected $subParser = null; public function __construct($name, array $options = array()) { $this->name = $name; if(array_key_exists('multiple', $options)) $this->multiple = (bool)$options['multiple']; if(array_key_exists('subParser', $options) && is_object($options['subParser'])) $this->subParser = $options['subParser']; } public function getName() { return $this->name; } public function isMultiple() { return $this->multiple; } /** * @return \Bitrix\PropertiesService\XmlParser|null */ public function getSubParser() { return $this->subParser; } /** * Modifier for the field value. * * @param mixed $value * @return mixed */ public function decodeValue($value) { return $value; } public static function getClass() { return get_called_class(); } }