108 lines
2.5 KiB
PHP
108 lines
2.5 KiB
PHP
<?php
|
|
namespace Bitrix\Iblock;
|
|
|
|
use Bitrix\Main\Entity;
|
|
use Bitrix\Main\Localization\Loc;
|
|
Loc::loadMessages(__FILE__);
|
|
|
|
/**
|
|
* Class IblockRssTable
|
|
*
|
|
* Fields:
|
|
* <ul>
|
|
* <li> ID int mandatory
|
|
* <li> IBLOCK_ID int mandatory
|
|
* <li> NODE string(50) mandatory
|
|
* <li> NODE_VALUE string(250) optional
|
|
* <li> IBLOCK reference to {@link \Bitrix\Iblock\IblockTable}
|
|
* </ul>
|
|
*
|
|
* @package Bitrix\Iblock
|
|
*
|
|
* DO NOT WRITE ANYTHING BELOW THIS
|
|
*
|
|
* <<< ORMENTITYANNOTATION
|
|
* @method static EO_IblockRss_Query query()
|
|
* @method static EO_IblockRss_Result getByPrimary($primary, array $parameters = [])
|
|
* @method static EO_IblockRss_Result getById($id)
|
|
* @method static EO_IblockRss_Result getList(array $parameters = [])
|
|
* @method static EO_IblockRss_Entity getEntity()
|
|
* @method static \Bitrix\Iblock\EO_IblockRss createObject($setDefaultValues = true)
|
|
* @method static \Bitrix\Iblock\EO_IblockRss_Collection createCollection()
|
|
* @method static \Bitrix\Iblock\EO_IblockRss wakeUpObject($row)
|
|
* @method static \Bitrix\Iblock\EO_IblockRss_Collection wakeUpCollection($rows)
|
|
*/
|
|
|
|
class IblockRssTable extends Entity\DataManager
|
|
{
|
|
/**
|
|
* Returns DB table name for entity
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getTableName()
|
|
{
|
|
return 'b_iblock_rss';
|
|
}
|
|
|
|
/**
|
|
* Returns entity map definition.
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function getMap()
|
|
{
|
|
return array(
|
|
'ID' => array(
|
|
'data_type' => 'integer',
|
|
'primary' => true,
|
|
'autocomplete' => true,
|
|
'title' => Loc::getMessage('IBLOCK_RSS_ENTITY_ID_FIELD'),
|
|
),
|
|
'IBLOCK_ID' => array(
|
|
'data_type' => 'integer',
|
|
'required' => true,
|
|
'title' => Loc::getMessage('IBLOCK_RSS_ENTITY_IBLOCK_ID_FIELD'),
|
|
),
|
|
'NODE' => array(
|
|
'data_type' => 'string',
|
|
'required' => true,
|
|
'validation' => array(__CLASS__, 'validateNode'),
|
|
'title' => Loc::getMessage('IBLOCK_RSS_ENTITY_NODE_FIELD'),
|
|
),
|
|
'NODE_VALUE' => array(
|
|
'data_type' => 'string',
|
|
'validation' => array(__CLASS__, 'validateNodeValue'),
|
|
'title' => Loc::getMessage('IBLOCK_ENTITY_NODE_VALUE_FIELD'),
|
|
),
|
|
'IBLOCK' => array(
|
|
'data_type' => 'Bitrix\Iblock\Iblock',
|
|
'reference' => array('=this.IBLOCK_ID' => 'ref.ID'),
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns validators for NODE field.
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function validateNode()
|
|
{
|
|
return array(
|
|
new Entity\Validator\Length(null, 50),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Returns validators for NODE_VALUE field.
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function validateNodeValue()
|
|
{
|
|
return array(
|
|
new Entity\Validator\Length(null, 250),
|
|
);
|
|
}
|
|
} |