Update
This commit is contained in:
109
core/bitrix/modules/iblock/lib/iblockrsstable.php
Normal file
109
core/bitrix/modules/iblock/lib/iblockrsstable.php
Normal file
@@ -0,0 +1,109 @@
|
||||
<?php
|
||||
|
||||
namespace Bitrix\Iblock;
|
||||
|
||||
use Bitrix\Main\Entity;
|
||||
use Bitrix\Main\Localization\Loc;
|
||||
use Bitrix\Main\ORM\Data\DataManager;
|
||||
|
||||
/**
|
||||
* 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 DataManager
|
||||
{
|
||||
/**
|
||||
* Returns DB table name for entity
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public static function getTableName(): string
|
||||
{
|
||||
return 'b_iblock_rss';
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns entity map definition.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getMap(): array
|
||||
{
|
||||
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),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user