hawkbit / presentation
Presentation layer for Hawkbit PSR-7 Micro PHP framework
Installs: 34
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 3
Type:hawkbit-component
Requires
- php: >=5.6
- league/plates: ~3.0
- psr/container: ~1.0
- psr/http-message: ~1.0
Requires (Dev)
- hawkbit/hawkbit: ~2.3
- phpunit/phpunit: ~4.8
This package is not auto-updated.
Last update: 2024-10-25 22:27:59 UTC
README
Ployglott and extensible presentation layer for different presentation engines.
The presentation layer uses league/plates
as default engine and could be extended with Twig,
Smarty, Liquid, Blade and further more.
Install
Using Composer
Hawkbit Presentation is available on Packagist and can be installed using Composer. This can be done by running the following command or by updating your composer.json
file.
composer require hawkbit/Presentation
composer.json
{ "require": { "hawkbit/Presentation": "~1.0" } }
Be sure to also include your Composer autoload file in your project:
<?php require __DIR__ . '/vendor/autoload.php';
Downloading .zip file
This project is also available for download as a .zip
file on GitHub. Visit the releases page, select the version you want, and click the "Source code (zip)" download button.
Requirements
The following versions of PHP are supported by this version.
- PHP 5.5
- PHP 5.6
- PHP 7.0
- PHP 7.1
- HHVM
In addition to PHP you also need a valid PSR-7 and PSR-11 integration.
Hawkbit Micro Framework is supported by default.
Silex, Lumen, zend-expressive and Slim support is untested but should work as well.
Setup
Setup with an existing application configuration (we refer to tests/assets/config.php)
<?php use \Hawkbit\Application; use \Hawkbit\Presentation\PresentationService; use \Hawkbit\Presentation\Adapters\PlatesAdapter; use \Hawkbit\Presentation\Adapters\Adapter; $app = new Application(require './config.php'); // or configure manually $app = new Application(); $app[Adapter::class] = new PlatesAdapter([ 'default' => __DIR__ . '/path/to/templates', 'another' => __DIR__ . '/path/to/other/templates', ]); $app[PresentationService::class] = new PresentationService($app->getContainer());
Presentation from Hawbit Application
<?php /** @var \Hawkbit\Presentation\PresentationService $Presentation */ $service = $app[\Hawkbit\Presentation\PresentationService::class];
Presentation in a Hawkbit controller
Access a presentation service in controller. Hawkbit inject classes to controllers by default.
<?php use Hawkbit\Presentation\PresentationService; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\ResponseInterface; class MyController { /** * @var PresentationService */ private $presentationService; /** * TestInjectableController constructor. * @param PresentationService $presentationService */ public function __construct(PresentationService $presentationService) { $this->presentationService = $presentationService; } public function getIndex(ServerRequestInterface $request, ResponseInterface $response, array $args = []) { $response->getBody()->write($this->presentationService->render('index', ['world' => 'World'])); return $response; } }
Access and extend engine
In some cases you would like to extend or access plates. We recommend to extend plates at a central point of your application like bootstrap or even better in your project service provider.
<?php use Hawkbit\Presentation\PresentationService; /** @var PresentationService $service */ $service = $app->getContainer()->get(PresentationService::class); $service->getEngine() ->addFolder('acme', __DIR__ . '/templates/acme') ->registerFunction('uppercase', function ($string) { return strtoupper($string); });
Wrap into PSR 7
Hawkbit presentation provides a PSR-7 Wrapper to capture rendered output into psr 7 response.
Please keep in mind to add an additional PSR-7 implementation!
You just need to wrap you favorite presentation adapter into psr 7 adapter
<?php use \Hawkbit\Application; use \Hawkbit\Presentation\PresentationService; use \Hawkbit\Presentation\Adapters\PlatesAdapter; use \Hawkbit\Presentation\Adapters\Adapter; use \Hawkbit\Presentation\Adapters\Psr7WrapperAdapter; $app = new Application(require './config.php'); // or configure manually $app = new Application(); $app[Adapter::class] = new Psr7WrapperAdapter(new PlatesAdapter([ 'default' => __DIR__ . '/path/to/templates', 'another' => __DIR__ . '/path/to/other/templates', ]), $app[\Psr\Http\Message\ServerRequestInterface::class], $app[\Psr\Http\Message\ResponseInterface::class]); $app[PresentationService::class] = new PresentationService($app->getContainer());
The integrations works with examples mentioned above
Rendering
Please keep in mind, that the render method is now returning an instance of \Psr\Http\Message\ResponseInterface
instead of a string!
Your presentation logic e. g. in a controller is now reduced as follows
<?php use Hawkbit\Presentation\PresentationService; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\ResponseInterface; class MyController { /** * @var PresentationService */ private $presentationService; /** * TestInjectableController constructor. * @param PresentationService $presentationService */ public function __construct(PresentationService $presentationService) { $this->presentationService = $presentationService; } public function getIndex(ServerRequestInterface $request, ResponseInterface $response, array $args = []) { // configured with PSR-7 adapter return $this->presentationService->render('index', ['world' => 'World']); } }
Add response on render
Response class is attached while rendering by default. But in some cases you need to add your own response class just before rendering. The wrappers render method takes optional response as a third argument.
<?php use Hawkbit\Presentation\PresentationService; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\ResponseInterface; class MyController { /** * @var PresentationService */ private $presentationService; /** * TestInjectableController constructor. * @param PresentationService $presentationService */ public function __construct(PresentationService $presentationService) { $this->presentationService = $presentationService; } public function getIndex(ServerRequestInterface $request, ResponseInterface $response, array $args = []) { // manipulate response // for example we need to add an api key $response = $response->withHeader('API-KEY', 123); // configured with PSR-7 adapter return $this->presentationService->render('index', ['world' => 'World'], $response); } }
You are now able to render a different view e.g. $presentationService->render('acme::index')
and use a view helper function within an view (template).
Plates
Please refer to plates documentation for more details.
Change log
Please see CHANGELOG for more information what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email mjls@web.de instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.