uawdijnntqw1x1x1
IP : 216.73.217.167
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
/
www
/
tiskom
/
data
/
www
/
tiskom.xhost.intravision.ru
/
bitrix
/
modules
/
main
/
lib
/
mail
/
context.php
/
/
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2017 Bitrix */ namespace Bitrix\Main\Mail; class Context { const CAT_EXTERNAL = 1; const PRIORITY_HIGH = 1; const PRIORITY_NORMAL = 2; const PRIORITY_LOW = 3; protected $category; protected $priority; /** @var Smtp\Config|null $smtp */ protected $smtp; /** @var Callback\Config $callback */ protected $callback; public function __construct(array $params = null) { if (!empty($params) && is_array($params)) { foreach ($params as $name => $value) { $setter = sprintf('set%s', $name); if (is_callable(array($this, $setter))) $this->$setter($value); } } } /** * @param int $category See Context CAT_* constants. * @return $this */ public function setCategory($category) { $this->category = $category; return $this; } /** * @return int|null */ public function getCategory() { return $this->category; } /** * @param Smtp\Config $config Smtp config. * @return $this */ public function setSmtp(Smtp\Config $config) { $this->smtp = $config; return $this; } /** * @return Smtp\Config|null */ public function getSmtp() { return $this->smtp; } /** * @param int $priority See Context PRIORITY_* constants. * @return $this */ public function setPriority($priority) { $this->priority = $priority; return $this; } /** * @return int|null */ public function getPriority() { return $this->priority; } /** * Get callback config instance. * * @param Callback\Config $config Callback config instance. * @return $this */ public function setCallback(Callback\Config $config) { $this->callback = $config; return $this; } /** * Get callback config instance. * * @return Callback\Config|null */ public function getCallback() { return $this->callback; } }
/var/www/tiskom/data/www/tiskom.xhost.intravision.ru/bitrix/modules/main/lib/mail/context.php