1. Go to this page and download the library: Download pllano/hooks library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
pllano / hooks example snippets
use Psr\Http\Message\ServerRequestInterface as Request;
use Psr\Http\Message\ResponseInterface as Response;
use Pllano\Hooks\Hook;
$app->get('/', function (Request $request, Response $response, array $args) {
// Передать конфигурацию в конструктор
$param = [];
$query = 'GET';
$app = 'site';
$routers = null;
// Если передать пустой массив [] возмет конфигурацию из файла hooks.json
// Передаем данные Hooks для обработки ожидающим классам
$hook = new Hook($param);
$hook->http($request, $response, $args, $query, $app, $routers);
$request = $hook->request();
$args = $hook->args();
$hook->setResource('user');
// Начало вашей обработки
$view = []; // Массив для шаблонизатора
$render = 'index.twig'; // Название файла шаблона
// Конец вашей обработки
// Передаем данные Hooks для обработки ожидающим классам
$hook->get($view, $render);
// Подменяем ответ
$response = $hook->response();
// Запись в лог
$this->logger->info($hook->logger());
// Отдаем данные шаблонизатору
return $this->view->render($hook->render(), $hook->view());
});
use Psr\Http\Message\ServerRequestInterface as Request;
use Psr\Http\Message\ResponseInterface as Response;
use Pllano\Hooks\Hook;
$app->post('/post', function (Request $request, Response $response, array $args) {
// Передать конфигурацию в конструктор
$param = [];
// Если передать пустой массив [] возмет конфигурацию из файла hooks.json
// Передаем данные Hooks для обработки ожидающим классам
$hook = new Hook($param);
$hook->http($request, $response, $args, 'POST', 'site');
$request = $hook->request();
$args = $hook->args();
// Начало вашей обработки
$callback = []; // Массив для вывода ответа
// Выводим заголовки
$response->withStatus(200);
$response->withHeader('Content-type', 'application/json');
// Конец вашей обработки
// Запись в лог
$this->logger->info($hook->logger());
// Подменяем ответ
$response = $hook->response();
// Выводим json
echo json_encode($hook->callback($callback));
});
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.