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
/
.
/
files
/
need-2-delete
/
mini-borishof.ru1
/
new_mini
/
bitrix
/
modules
/
iblock
/
lib
/
iblockmessage.php
/
/
<?php namespace Bitrix\Iblock; use Bitrix\Main\Entity; use Bitrix\Main\Localization\Loc; Loc::loadMessages(__FILE__); /** * Class IblockMessageTable * * Fields: * <ul> * <li> IBLOCK_ID int mandatory * <li> MESSAGE_ID string(50) mandatory * <li> MESSAGE_TEXT string(255) optional * <li> IBLOCK reference to {@link \Bitrix\Iblock\IblockTable} * </ul> * * @package Bitrix\Iblock */ class IblockMessageTable extends Entity\DataManager { /** * Returns path to the file which contains definition of the class. * * @return string */ public static function getFilePath() { return __FILE__; } /** * Returns DB table name for entity * * @return string */ public static function getTableName() { return 'b_iblock_messages'; } /** * Returns entity map definition. * * @return array */ public static function getMap() { return array( 'IBLOCK_ID' => array( 'data_type' => 'integer', 'primary' => true, 'title' => Loc::getMessage('IBLOCK_MESSAGE_ENTITY_IBLOCK_ID_FIELD'), ), 'MESSAGE_ID' => array( 'data_type' => 'string', 'primary' => true, 'validation' => array(__CLASS__, 'validateMessageId'), 'title' => Loc::getMessage('IBLOCK_MESSAGE_ENTITY_MESSAGE_ID_FIELD'), ), 'MESSAGE_TEXT' => array( 'data_type' => 'string', 'validation' => array(__CLASS__, 'validateMessageText'), 'title' => Loc::getMessage('IBLOCK_MESSAGE_ENTITY_MESSAGE_TEXT_FIELD'), ), 'IBLOCK' => array( 'data_type' => 'Bitrix\Iblock\Iblock', 'reference' => array('=this.IBLOCK_ID' => 'ref.ID') ), ); } /** * Returns validators for MESSAGE_ID field. * * @return array */ public static function validateMessageId() { return array( new Entity\Validator\Length(null, 50), ); } /** * Returns validators for MESSAGE_TEXT field. * * @return array */ public static function validateMessageText() { return array( new Entity\Validator\Length(null, 255), ); } }
/var/./files/need-2-delete/mini-borishof.ru1/new_mini/bitrix/modules/iblock/lib/iblockmessage.php