uawdijnntqw1x1x1
IP : 18.119.131.131
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
/
tasks
/
lib
/
internals
/
systemlog.php
/
/
<? namespace Bitrix\Tasks\Internals; use Bitrix\Main, Bitrix\Main\Localization\Loc; //Loc::loadMessages(__FILE__); class SystemLogTable extends Main\Entity\DataManager { /** * Returns DB table name for entity. * * @return string */ public static function getTableName() { return 'b_tasks_syslog'; } /** * @return static */ public static function getClass() { return get_called_class(); } /** * Returns entity map definition. * * @return array */ public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, //'title' => Loc::getMessage('SYSLOG_ENTITY_ID_FIELD'), ), 'TYPE' => array( 'data_type' => 'integer', //'title' => Loc::getMessage('SYSLOG_ENTITY_TYPE_FIELD'), ), 'CREATED_DATE' => array( 'data_type' => 'datetime', //'title' => Loc::getMessage('SYSLOG_ENTITY_CREATED_DATE_FIELD'), ), 'MESSAGE' => array( 'data_type' => 'string', 'validation' => array(__CLASS__, 'validateMessage'), //'title' => Loc::getMessage('SYSLOG_ENTITY_MESSAGE_FIELD'), ), 'ENTITY_ID' => array( 'data_type' => 'integer', //'title' => Loc::getMessage('SYSLOG_ENTITY_ENTITY_ID_FIELD'), ), 'ENTITY_TYPE' => array( 'data_type' => 'integer', //'title' => Loc::getMessage('SYSLOG_ENTITY_ENTITY_TYPE_FIELD'), ), 'PARAM_A' => array( 'data_type' => 'integer', //'title' => Loc::getMessage('SYSLOG_ENTITY_PARAM_A_FIELD'), ), 'ERROR' => array( 'data_type' => 'text', //'title' => Loc::getMessage('SYSLOG_ENTITY_ERROR_FIELD'), ), ); } /** * Returns validators for MESSAGE field. * * @return array */ public static function validateMessage() { return array( new Main\Entity\Validator\Length(null, 255), ); } }
/var/www/axolotl/data/www/samara.axolotls.ru/bitrix/modules/tasks/lib/internals/systemlog.php