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/calendar/lib/ical/builder/ |
Upload File : |
<?php namespace Bitrix\Calendar\ICal\Builder; use Bitrix\Calendar\SerializeObject; use Serializable; class Attach implements Serializable { use SerializeObject; /** * @var string */ private $link; /** * @var string */ private $name; /** * @var int */ private $size; /** * @param string $link * @param string $name * @param int $size * @return Attach */ public static function createInstance(string $link, string $name, int $size): Attach { return new self($link, $name, $size); } /** * Attach constructor. * @param string $link * @param string $name * @param int $size */ public function __construct(string $link, string $name, int $size) { $this->link = $link; $this->name = $name; $this->size = $size; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getLink(): string { return $this->link; } /** * @return int */ public function getSize(): int { return $this->size; } public function getFormatSize($precision = 2): string { $suffix = array('b', 'Kb', 'Mb', 'Gb', 'Tb'); $pos = 0; $size = $this->size; while($size >= 1024 && $pos < 4) { $size /= 1024; $pos++; } return round($size, $precision) . ' ' . $suffix[$pos]; } }