uawdijnntqw1x1x1
IP : 216.73.217.165
Hostname : xhost1.intravision.ru
Kernel : Linux xhost1.intravision.ru 3.16.0-7-amd64 #1 SMP Debian 3.16.59-1 (2018-10-03) 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
/
files
/
need-2-delete
/
.
/
mini-borishof.ru1
/
.
/
bitrix
/
modules
/
main
/
lib
/
.
/
data
/
statichtmlstorage.php
/
/
<?php namespace Bitrix\Main\Data; use Bitrix\Main; /** * Class StaticHtmlStorage * Represents the interface for a cache storage * @package Bitrix\Main\Data */ abstract class StaticHtmlStorage { protected $cacheKey = null; protected $configuration = array(); protected $htmlCacheOptions = array(); /** * @param string $cacheKey unique cache identifier * @param array $configuration storage configuration * @param array $htmlCacheOptions html cache options */ public function __construct($cacheKey, array $configuration, array $htmlCacheOptions) { $this->cacheKey = $cacheKey; $this->configuration = $configuration; $this->htmlCacheOptions = $htmlCacheOptions; } /** * Writes the content to the storage * @param string $content the string that is to be written * @param string $md5 the content hash * * @return bool */ abstract public function write($content, $md5); /** * Returns the cache contents * @return string|false */ abstract public function read(); /** * Returns true if the cache exists * @return bool */ abstract public function exists(); /** * Deletes the cache * Returns the number of deleted bytes * @return int|false */ abstract public function delete(); /** * Deletes all cache data in the storage * @return bool */ abstract public function deleteAll(); /** * Returns md5 hash of the cache * @return string|false */ abstract public function getMd5(); /** * Should we count a quota limit * @return bool */ abstract public function shouldCountQuota(); /** * Returns the time the cache was last modified * @return int|false */ abstract public function getLastModified(); /** * Returns cache size * @return int|false */ abstract public function getSize(); }
/var/files/need-2-delete/./mini-borishof.ru1/./bitrix/modules/main/lib/./data/statichtmlstorage.php