AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 3.17.176.169
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitrix/www/bitrix/modules/abtest/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/modules/abtest/lib/abtest.php
<?php

namespace Bitrix\ABTest;

use Bitrix\Main\Entity;
use Bitrix\Main\Localization;

Localization\Loc::loadMessages(__FILE__);

/**
 * Class ABTestTable
 *
 * DO NOT WRITE ANYTHING BELOW THIS
 *
 * <<< ORMENTITYANNOTATION
 * @method static EO_ABTest_Query query()
 * @method static EO_ABTest_Result getByPrimary($primary, array $parameters = array())
 * @method static EO_ABTest_Result getById($id)
 * @method static EO_ABTest_Result getList(array $parameters = array())
 * @method static EO_ABTest_Entity getEntity()
 * @method static \Bitrix\ABTest\EO_ABTest createObject($setDefaultValues = true)
 * @method static \Bitrix\ABTest\EO_ABTest_Collection createCollection()
 * @method static \Bitrix\ABTest\EO_ABTest wakeUpObject($row)
 * @method static \Bitrix\ABTest\EO_ABTest_Collection wakeUpCollection($rows)
 */
class ABTestTable extends Entity\DataManager
{

	/**
	 * Returns DB table name for entity
	 *
	 * @return string
	 */
	public static function getTableName()
	{
		return 'b_abtest';
	}

	/**
	 * Returns entity map definition
	 *
	 * @return array
	 */
	public static function getMap()
	{
		return array(
			'ID' => array(
				'data_type' => 'integer',
				'primary' => true,
				'autocomplete' => true
			),
			'SITE_ID' => array(
				'data_type' => 'string',
				'title'     => Localization\Loc::getMessage('abtest_entity_site_field'),
				'required'  => true
			),
			'ACTIVE' => array(
				'data_type' => 'boolean',
				'title'     => Localization\Loc::getMessage('abtest_entity_active_field'),
				'values'    => array('N', 'Y'),
				'required'  => true
			),
			'ENABLED' => array(
				'data_type' => 'enum',
				'title'     => Localization\Loc::getMessage('abtest_entity_enabled_field'),
				'values'    => array('N', 'T', 'Y'),
				'required'  => true
			),
			'NAME' => array(
				'data_type' => 'string',
				'title'     => Localization\Loc::getMessage('abtest_entity_name_field'),
			),
			'DESCR' => array(
				'data_type' => 'text',
				'title'     => Localization\Loc::getMessage('abtest_entity_descr_field'),
			),

			'TEST_DATA' => array(
				'data_type'  => 'text',
				'title'      => Localization\Loc::getMessage('abtest_entity_test_data_field'),
				'serialized' => true,
				'required'   => true
			),

			'START_DATE' => array(
				'data_type' => 'datetime',
				'title'     => Localization\Loc::getMessage('abtest_entity_start_date_field'),
			),
			'STOP_DATE' => array(
				'data_type' => 'datetime',
				'title'     => Localization\Loc::getMessage('abtest_entity_stop_date_field'),
			),
			'DURATION' => array(
				'data_type' => 'integer',
				'title'     => Localization\Loc::getMessage('abtest_entity_duration_field'),
				'required'  => true
			),
			'PORTION' => array(
				'data_type' => 'integer',
				'title'     => Localization\Loc::getMessage('abtest_entity_portion_field'),
				'required'  => true
			),

			'MIN_AMOUNT' => array(
				'data_type' => 'integer',
				'title'     => Localization\Loc::getMessage('abtest_entity_min_amount_field')
			),

			'USER_ID' => array(
				'data_type' => 'integer',
				'title'     => Localization\Loc::getMessage('abtest_entity_userid_field')
			),
			'USER' => array(
				'data_type' => 'Bitrix\Main\User',
				'reference' => array('=this.USER_ID' => 'ref.ID'),
			),

			'SORT' => array(
				'data_type' => 'integer',
				'title'     => Localization\Loc::getMessage('abtest_entity_sort_field'),
			),
		);
	}

}

Anon7 - 2022
AnonSec Team