koka / flash
flash messages
dev-master
2015-11-20 09:57 UTC
Requires
- php: >=5.4.0
- phpixie/http: ~3.0
- phpixie/slice: ~3.0
Requires (Dev)
- phpixie/test: ~3.0
This package is not auto-updated.
Last update: 2025-03-29 21:19:52 UTC
README
Flash messages for phpixie3
Установка
- Подключаем библиотеку в проект
composer require koka/flash:dev-master
- Подключить библиотеку глобально для всех бандлов
// /src/Project/Framework/Builder.php protected function buildComponents() { return new Components($this); }
// /src/Project/Framework/Components.php namespace Project\Framework; class Components extends \PHPixie\BundleFramework\Components { public function flash() { return $this->instance('flash'); } protected function buildFlash() { $types = $this->builder->assets()->configStorage()->get('flash'); if (!$types) { $types = []; } return new \Koka\Flash\Flash($this->builder->context(), $types); } }
Для кастомизации типов создайте файл
Значения массива можно изменять под свои нужды, главное сохранять ключи. Если файл не создавать то по умолчанию тип равен ключу.
// /assets/config/flash.php <?php return [ 'error' => 'alert alert-error', 'danger' => 'alert alert-danger', 'warning' => 'alert alert-warning', 'notice' => 'alert alert-notice', 'alert' => 'alert alert-alert', 'info' => 'alert alert-info', 'success' => 'alert alert-success' ];
Использование
// /bundles/app/src/Project/App/HTTPProcessor.php namespace Project\App; class HTTPProcessor extends \PHPixie\DefaultBundle\Processor\HTTP\Builder { protected $builder; protected $attribute = 'processor'; public function __construct($builder) { $this->builder = $builder; } protected function buildGreetProcessor() { return new HTTPProcessors\Greet($this->builder); } }
// /bundles/app/src/Project/App/HTTPProcessors/Greet.php namespace Project\App\HTTPProcessors; class Greet extends \PHPixie\DefaultBundle\Processor\HTTP\Actions { protected $template; protected $flash; public function __construct($builder) { $this->template = $builder->components->template(); $this->flash = $builder->components->flash(); } public function defaultAction($request) { // add test info message $this->flash->info('Test info message'); $container = $this->template->get('app:greet'); $container->message = "Have fun coding!"; $container->flash = $this->flash; return $container; } }
// /bundles/app/assets/templates/layout.php <!DOCTYPE html> <html> <head> <title>PHPixie 3.0</title> </head> <body> <h1>PHPixie 3.0</h1> <div class="row"> <?php foreach ($flash as $msg):?> <div class="<?=$msg->getType()?>" role='alert'><?=$_($msg)?></div> <?php endforeach;?> </div> <?php $this->childContent();?> </body> </html>