Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
urlcheckerstatus.php
1
<?php
2
namespace
Bitrix\Landing\Internals
;
3
4
use
Bitrix\Main\Localization\Loc
;
5
use
Bitrix\Main\Entity
;
6
7
Loc::loadMessages
(__FILE__);
8
9
class
UrlCheckerStatusTable
extends
Entity\DataManager
10
{
15
public
static
function
getTableName
()
16
{
17
return
'b_landing_urlchecker_status'
;
18
}
19
24
public
static
function
getMap
()
25
{
26
return
array(
27
'ID'
=>
new
Entity
\
IntegerField
(
'ID'
, array(
28
'primary'
=>
true
,
29
'autocomplete'
=>
true
,
30
'title'
=>
'ID'
31
)),
32
'URL'
=>
new
Entity
\
StringField
(
'URL'
, array(
33
'title'
=>
Loc::getMessage
(
'LANDING_TABLE_UCS_FIELD_URL'
),
34
'required'
=>
true
35
)),
36
'HASH'
=>
new
Entity
\
StringField
(
'HASH'
, array(
37
'title'
=>
Loc::getMessage
(
'LANDING_TABLE_UCS_FIELD_HASH'
),
38
'required'
=>
true
39
)),
40
'STATUS'
=>
new
Entity
\
StringField
(
'STATUS'
, array(
41
'title'
=>
Loc::getMessage
(
'LANDING_TABLE_UCS_FIELD_STATUS'
)
42
))
43
);
44
}
45
}
Bitrix\Landing\Internals\UrlCheckerStatusTable
Definition
urlcheckerstatus.php:10
Bitrix\Landing\Internals\UrlCheckerStatusTable\getMap
static getMap()
Definition
urlcheckerstatus.php:24
Bitrix\Landing\Internals\UrlCheckerStatusTable\getTableName
static getTableName()
Definition
urlcheckerstatus.php:15
Bitrix\Main\Localization\Loc
Definition
loc.php:11
Bitrix\Main\Localization\Loc\loadMessages
static loadMessages($file)
Definition
loc.php:64
Bitrix\Main\Localization\Loc\getMessage
static getMessage($code, $replace=null, $language=null)
Definition
loc.php:29
Bitrix\Main\ORM\Entity
Definition
entity.php:26
Bitrix\Main\ORM\Fields\IntegerField
Definition
integerfield.php:20
Bitrix\Main\ORM\Fields\StringField
Definition
stringfield.php:20
Bitrix\Landing\Internals
Definition
base.php:2
modules
landing
lib
internals
urlcheckerstatus.php
Создано системой
1.10.0