1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Data.php
См. документацию.
1<?php
2
4
5abstract 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}
if(!Loader::includeModule('catalog')) if(!AccessController::getCurrent() ->check(ActionDictionary::ACTION_PRICE_EDIT)) if(!check_bitrix_sessid()) $request
Определения catalog_reindex.php:36
static createFromRequest($request)
static validateId(int $id)
Определения Data.php:9
Определения Data.php:3