Lines Matching refs:request
203 * @param ServerRequestInterface $request
207 public function getAdminAction(ServerRequestInterface $request): ResponseInterface argument
212 $tree = Validator::attributes($request)->treeOptional();
251 * @param ServerRequestInterface $request
255 public function postAdminAction(ServerRequestInterface $request): ResponseInterface argument
260 'tree' => Validator::parsedBody($request)->string('tree'),
265 * @param ServerRequestInterface $request
269 public function getAdminEditAction(ServerRequestInterface $request): ResponseInterface argument
273 $tree = Validator::attributes($request)->tree();
274 $block_id = Validator::queryParams($request)->integer('block_id', 0);
275 $url = Validator::queryParams($request)->string('url', '');
282 $xref = Validator::queryParams($request)->isXref()->string('xref', '');
311 * @param ServerRequestInterface $request
315 public function postAdminEditAction(ServerRequestInterface $request): ResponseInterface argument
317 $tree = Validator::attributes($request)->tree();
318 $block_id = Validator::queryParams($request)->integer('block_id', 0);
319 $xref = Validator::parsedBody($request)->string('xref');
320 $story_body = Validator::parsedBody($request)->string('story_body');
321 $story_title = Validator::parsedBody($request)->string('story_title');
322 $languages = Validator::parsedBody($request)->array('languages');
324 $url = Validator::parsedBody($request)->isLocalUrl()->string('url', $default_url);
353 * @param ServerRequestInterface $request
357 public function postAdminDeleteAction(ServerRequestInterface $request): ResponseInterface argument
359 $tree = Validator::attributes($request)->tree();
360 $block_id = Validator::queryParams($request)->integer('block_id');
380 * @param ServerRequestInterface $request
384 public function getShowListAction(ServerRequestInterface $request): ResponseInterface argument
386 $tree = Validator::attributes($request)->tree();