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/ilovecveti.ru/bitrix/modules/seo/lib/analytics/internals/ |
Upload File : |
<?php namespace Bitrix\Seo\Analytics\Internals; class Page { protected $data; /** * @param array $data */ public function __construct(array $data = []) { $this->prepareData($data); } /** * @return array */ public function toArray() { return $this->data; } /** * @return int */ public function getId() { return $this->data['id']; } /** * @return string */ public function getName() { return $this->data['name']; } /** * @return string */ public function getAbout() { return $this->data['about']; } /** * @return string */ public function getImage() { return $this->data['image']; } /** * @return string */ public function getPhone() { return $this->data['phone']; } /** * @return string */ public function getEmail() { return $this->data['email']; } /** * @param array $data */ protected function prepareData(array $data) { $this->data = [ 'id' => 0, 'name' => null, 'about' => null, 'image' => null, 'phone' => null, 'email' => null, ]; $this->data = array_merge($this->data, $data); } }