uawdijnntqw1x1x1
IP : 216.73.216.207
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
/
orm
/
eventresult.php
/
/
<?php /** * Bitrix Framework * @package bitrix * @subpackage main * @copyright 2001-2013 Bitrix */ namespace Bitrix\Main\ORM; use Bitrix\Main\ORM\Fields\FieldError; class EventResult extends \Bitrix\Main\EventResult { /** @var array */ protected $modified = array(); /** @var string[] */ protected $unset = array(); /** @var EntityError[] */ protected $errors = array(); public function __construct() { parent::__construct(parent::SUCCESS, $parameters = null, $moduleId = null, $handler = null); } /** * Sets the errors array and changes the event type to ERROR * @param EntityError[] $errors */ public function setErrors(array $errors) { $this->errors = $errors; $this->type = parent::ERROR; } /** * @param EntityError $error */ public function addError(EntityError $error) { $this->errors[] = $error; $this->type = parent::ERROR; } /** * @return EntityError[]|FieldError[] */ public function getErrors() { return $this->errors; } /** * Sets the array of fields to modify data in the Bitrix\Main\ORM\Event * @param array $fields */ public function modifyFields(array $fields) { $this->modified = $fields; } public function getModified() { return $this->modified; } /** * Sets the array of fields names to unset data in the Bitrix\Main\ORM\Event * @param array $fields */ public function unsetFields(array $fields) { $this->unset = $fields; } /** * @param string $fieldName */ public function unsetField($fieldName) { $this->unset[] = $fieldName; } public function getUnset() { return $this->unset; } }
/var/www/tiskom/data/./www/tiskom.xhost.intravision.ru/bitrix/modules/main/lib/orm/eventresult.php