ajt/flashbundle

Symfony bundle for for managing flash messages

1.5.0 2015-06-30 10:13 UTC

This package is not auto-updated.

Last update: 2024-03-16 12:49:13 UTC


README

Build Status SensioLabsInsight

The AJT Flash Bundle will manage the use of Symfony flash messages with a simple API.

Usage

Inject the Flash service into any service

<argument type="service" id="ajt.flash" />

Use it in service

class MyClass
{

    private $flash;

    public function __construct(FlashInterface $flash)
    {
        $this->flash = $flash;
    }

    public function goThings()
    {
        ...
        $this->flash->success("Well done");
    }
}

Use the twig function in your template,

{{ ajt_flash() }}

Or if you want to only display some types of message

{{ ajt_flash('error') }}

Standard Types

By default the Flash bundle will support the standard bootstrap alert types.

// Set a custom type

$flash->set('my message', 'myType');

// Bootstrap
$flash->success('my message');
$flash->error('my message');
$flash->info('my message');
$flash->warning('my message');

Custom Css

Custom css classes can be set by modifying config.

ajt_flash:
	default_class: alert # Added to every flash
	
	# CSS to add to the standard flash types - default to bootstrap
	core:
		success: alert-success
		error: alert-danger
		info: alert-info
		warning: alert-warning
	
	# Add a custom flash type called myType with the css myCss
	custom:
		myType:
			type: myType
			css: myCss