Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
Data.php
1
<?php
2
3
namespace
Bitrix\Lists\Api\Data
;
4
5
abstract
class
Data
6
{
7
abstract
public
static
function
createFromRequest
($request): self;
8
9
protected
static
function
validateId
(
int
$id): ?int
10
{
11
if
($id >= 0)
12
{
13
return
$id;
14
}
15
16
return
null
;
17
}
18
}
Bitrix\Lists\Api\Data\Data
Definition
Data.php:6
Bitrix\Lists\Api\Data\Data\createFromRequest
static createFromRequest($request)
Bitrix\Lists\Api\Data\Data\validateId
static validateId(int $id)
Definition
Data.php:9
Bitrix\Lists\Api\Data
Definition
Data.php:3
modules
lists
lib
Api
Data
Data.php
Создано системой
1.10.0