uawdijnntqw1x1x1
IP : 18.222.178.70
Hostname : axolotl
Kernel : Linux axolotl 4.9.0-13-amd64 #1 SMP Debian 4.9.228-1 (2020-07-05) x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
OS : Linux
PATH:
/
var
/
www
/
axolotl
/
data
/
www
/
samara.axolotls.ru
/
bitrix
/
modules
/
disk
/
lib
/
zipnginx
/
testarchiveentry.php
/
/
<?php namespace Bitrix\Disk\ZipNginx; use Bitrix\Disk\AttachedObject; use Bitrix\Disk\File; class TestArchiveEntry extends ArchiveEntry { const TEST_FILE = '/bitrix/images/disk/is.png'; protected function __construct() { parent::__construct(); $this->path = static::TEST_FILE; $this->name = 'is.png'; $this->size = 0; } /** * Creates test entry. * * @return static */ public static function create() { return new static; } /** * Creates test entry. * * @param File $file File. * @param null $name * * @return static */ public static function createFromFileModel(File $file, $name = null) { return new static; } /** * Creates test entry. * * @param AttachedObject $attachedObject Attached object. * @param null $name * * @return static */ public static function createFromAttachedObject(AttachedObject $attachedObject, $name = null) { return new static; } /** * Creates test entry. * * @param array $fileArray Array of file from b_file. * @param string $name Name of file. * @return static * @throws \Bitrix\Main\ArgumentNullException */ public static function createFromFileArray(array $fileArray, $name) { return new static; } }
/var/www/axolotl/data/www/samara.axolotls.ru/bitrix/modules/disk/lib/zipnginx/testarchiveentry.php