uawdijnntqw1x1x1
IP : 216.73.216.163
Hostname : yjpwxulqtt
Kernel : Linux yjpwxulqtt 5.15.0-126-generic #136-Ubuntu SMP Wed Nov 6 10:38:22 UTC 2024 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,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,exec,system,passthru,shell_exec,proc_open,popen
OS : Linux
PATH:
/
home
/
user
/
web
/
pansionat-v-yaroslavle.ru
/
public_html
/
70645
/
..
/
bitrix
/
modules
/
seo
/
lib
/
adv
/
link.php
/
/
<?php /** * Bitrix Framework * @package bitrix * @subpackage seo * @copyright 2001-2013 Bitrix */ namespace Bitrix\Seo\Adv; use Bitrix\Main\Entity; /** * Class LinkTable * * Fields: * <ul> * <li> LINK_TYPE string(1) mandatory * <li> LINK_ID int mandatory * <li> BANNER_ID int mandatory * </ul> * * @package Bitrix\Seo **/ class LinkTable extends Entity\DataManager { const TYPE_IBLOCK_ELEMENT = 'I'; /** * Returns DB table name for entity. * * @return string */ public static function getTableName() { return 'b_seo_adv_link'; } /** * Returns entity map definition. * * @return array */ public static function getMap() { return array( 'LINK_TYPE' => array( 'data_type' => 'enum', 'primary' => true, 'values' => array(static::TYPE_IBLOCK_ELEMENT), ), 'LINK_ID' => array( 'data_type' => 'integer', 'primary' => true, ), 'BANNER_ID' => array( 'data_type' => 'integer', 'primary' => true, ), 'BANNER' => array( 'data_type' => 'Bitrix\Seo\Adv\YandexBannerTable', 'reference' => array('=this.BANNER_ID' => 'ref.ID'), ), 'IBLOCK_ELEMENT' => array( 'data_type' => 'Bitrix\Iblock\ElementTable', 'reference' => array('=this.LINK_ID' => 'ref.ID'), ), ); } }
/home/user/web/pansionat-v-yaroslavle.ru/public_html/70645/../bitrix/modules/seo/lib/adv/link.php