FlashAlertBundle icon indicating copy to clipboard operation
FlashAlertBundle copied to clipboard

Simplified way to handle (add/display) Symfony flash messages. Client side scripts are written in pure JavaScript. https://packagist.org/packages/ras/flash-alert-bundle

Results 6 FlashAlertBundle issues
Sort by recently updated
recently updated
newest added

The service "ras_flash_alert.templating.flash_alerts_helper" has a dependency on a non-existent service "templating".

The services.yml files doesn't allow key'd arguments in the latest version of symfony (3.3) Example: **Broken:** `services: ras_flash_alert.alert_reporter: class: Ras\Bundle\FlashAlertBundle\Model\AlertReporter arguments: alertManager: "@ras_flash_alert.alert_manager"` **Fixed** `services: ras_flash_alert.alert_reporter: class: Ras\Bundle\FlashAlertBundle\Model\AlertReporter arguments: ["@ras_flash_alert.alert_manager"]`...

Fix Twig Deprecation Warning #17

Just after installing your bundle in my Symfony 3.2 project, I got this deprecation warning: `The Twig_Function_Method class is deprecated since version 1.12 and will be removed in 2.0. Use...

Is there a way to auto hide the flash alerts after some seconds?