uawdijnntqw1x1x1
IP : 3.142.144.163
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
/
nn.axolotls.ru
/
bitrix
/
modules
/
crm
/
lib
/
event.php
/
/
<?php /** * Bitrix Framework * @package bitrix * @subpackage crm * @copyright 2001-2012 Bitrix */ namespace Bitrix\Crm; use Bitrix\Main\Entity; use Bitrix\Main\Localization\Loc; Loc::loadMessages(__FILE__); class EventRelationsTable extends Entity\DataManager { public static function getTableName() { return 'b_crm_event_relations'; } public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true, 'autocomplete' => true, ), 'EVENT_ID' => array( 'data_type' => 'integer', 'primary' => true ), 'EVENT_BY' => array( 'data_type' => 'Event', 'reference' => array('=this.EVENT_ID' => 'ref.ID') ), 'ENTITY_TYPE' => array( 'data_type' => 'string' ), 'ENTITY_ID' => array( 'data_type' => 'integer', 'primary' => true ), 'ASSIGNED_BY_ID' => array( 'data_type' => 'integer' ), 'ASSIGNED_BY' => array( 'data_type' => 'Bitrix\Main\User', 'reference' => array('=this.ASSIGNED_BY_ID' => 'ref.ID') ) ); } } class EventTable extends Entity\DataManager { public static function getTableName() { return 'b_crm_event'; } public static function getMap() { return array( 'ID' => array( 'data_type' => 'integer', 'primary' => true ), 'EVENT_ID' => array( 'data_type' => 'string' ), 'EVENT_BY' => array( 'data_type' => 'Status', 'reference' => array('EVENT_ID', 'STATUS_ID', 'ENTITY_ID') ), 'EVENT_NAME' => array( 'data_type' => 'string' ), 'EVENT_TYPE' => array( 'data_type' => 'integer' ), 'DATE_CREATE' => array( 'data_type' => 'datetime' ), 'CREATED_BY_ID' => array( 'data_type' => 'integer' ), 'CREATED_BY' => array( 'data_type' => 'Bitrix\Main\User', 'reference' => array('CREATED_BY_ID', 'ID') ), 'FILES' => array( 'data_type' => 'string' ) ); } }
/var/www/axolotl/data/www/nn.axolotls.ru/bitrix/modules/crm/lib/event.php