Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
jsonpayload.php
1<?php
2
3namespace Bitrix\Main\Engine;
4
7
12final class JsonPayload
13{
19 public function getData()
20 {
21 return $this->getDataList()->toArray();
22 }
23
29 public function getDataList()
30 {
31 return Context::getCurrent()->getRequest()->getJsonList();
32 }
33
39 public function getRaw()
40 {
41 return HttpRequest::getInput();
42 }
43}
static getCurrent()
Definition context.php:241