Файловый менеджер - Редактировать - /home/lmsyaran/public_html/libraries/gantry5/classes/Gantry/Component/Controller/RestfulControllerInterface.php
Назад
<?php /** * @package Gantry5 * @author RocketTheme http://www.rockettheme.com * @copyright Copyright (C) 2007 - 2017 RocketTheme, LLC * @license Dual License: MIT or GNU/GPLv2 and later * * http://opensource.org/licenses/MIT * http://www.gnu.org/licenses/gpl-2.0.html * * Gantry Framework code that extends GPL code is considered GNU/GPLv2 and later */ namespace Gantry\Component\Controller; interface RestfulControllerInterface { /** * @example GET /resources * * @return mixed */ public function index(); /** * @example GET /resources/:id * * @param string $id * @return mixed */ public function display($id); /** * Special sub-resource to create a new resource (returns a form). * * @example GET /resources/create * * @return mixed */ public function create(); /** * Special sub-resource to edit existing resource (returns a form). * * @example GET /resources/:id/edit * * @param string $id * @return mixed */ public function edit($id); /** * @example POST /resources * * @return mixed */ public function store(); /** * @example PUT /resources/:id * * @param string $id * @return mixed */ public function replace($id); /** * @example PATCH /resources/:id * * @param string $id * @return mixed */ public function update($id); /** * @example DELETE /resources/:id * * @param string $id * @return mixed */ public function destroy($id); }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка