Abstract class Phalcon\Flash
Shows HTML notifications related to different circumstances. Classes can be stylized using CSS
$flash->success("The record was successfully deleted"); $flash->error("Cannot open the file");
Methods
public __construct ([array $cssClasses])
Phalcon\Flash constructor
public Phalcon\FlashInterface setImplicitFlush (boolean $implicitFlush)
Set whether the output must be implicitly flushed to the output or returned as string
public Phalcon\FlashInterface setAutomaticHtml (boolean $automaticHtml)
Set if the output must be implictily formatted with HTML
public Phalcon\FlashInterface setCssClasses (array $cssClasses)
Set an array with CSS classes to format the messages
public string error (string $message)
Shows a HTML error message
$flash->error('This is an error');
public string notice (string $message)
Shows a HTML notice/information message
$flash->notice('This is an information');
public string success (string $message)
Shows a HTML success message
$flash->success('The process was finished successfully');
public string warning (string $message)
Shows a HTML warning message
$flash->warning('Hey, this is important');
public outputMessage (string $type, string $message)
Outputs a message formatting it with HTML
$flash->outputMessage('error', $message);
© 2011–2016 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/2.0.0/api/Phalcon_Flash.html