uawdijnntqw1x1x1
IP : 3.144.104.136
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
/
counterlog.php
/
/
<?php namespace Bitrix\Tasks\Internals; use Bitrix\Main, Bitrix\Main\Localization\Loc; //Loc::loadMessages(__FILE__); class CounterLogTable extends Main\Entity\DataManager { public static function getTableName() { return 'b_tasks_counters'; } public static function getClass() { return get_called_class(); } public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, ), 'USER_ID' => array( 'data_type' => 'integer', 'required' => true, ), 'GROUP_ID' => array( 'data_type' => 'integer', 'required' => true, ), 'DATE' => array( 'data_type' => 'datetime', 'required' => true, ), 'KPI' => array( 'data_type' => 'integer' ), 'OPENED' => array( 'data_type' => 'integer' ), 'CLOSED' => array( 'data_type' => 'integer' ), 'MY_EXPIRED' => array( 'data_type' => 'integer' ), 'MY_EXPIRED_SOON' => array( 'data_type' => 'integer' ), 'MY_NOT_VIEWED' => array( 'data_type' => 'integer' ), 'MY_WITHOUT_DEADLINE' => array( 'data_type' => 'integer' ), 'ORIGINATOR_EXPIRED' => array( 'data_type' => 'integer' ), 'ORIGINATOR_WITHOUT_DEADLINE' => array( 'data_type' => 'integer' ), 'ORIGINATOR_WAIT_CTRL' => array( 'data_type' => 'integer' ), 'AUDITOR_EXPIRED' => array( 'data_type' => 'integer' ), 'ACCOMPLICES_EXPIRED' => array( 'data_type' => 'integer' ), 'ACCOMPLICES_EXPIRED_SOON' => array( 'data_type' => 'integer' ), 'ACCOMPLICES_NOT_VIEWED' => array( 'data_type' => 'integer' ), // references 'USER' => array( 'data_type' => 'Bitrix\Main\UserTable', 'reference' => array('=this.USER_ID' => 'ref.ID') ), 'GROUP' => array( 'data_type' => 'Bitrix\Socialnetwork\Workgroup', 'reference' => array('=this.GROUP_ID' => 'ref.ID') ), ); } }
/var/www/axolotl/data/www/samara.axolotls.ru/bitrix/modules/tasks/lib/internals/counterlog.php