Class **Phalcon\\Flash** ======================== Shows HTML notifications related to different circumstances. Classes can be stylized using CSS .. code-block:: php success("The record was successfully deleted"); $flash->error("Cannot open the file"); Methods --------- public **__construct** ([*array* $cssClasses]) Phalcon\\Flash constructor public :doc:`Phalcon\\FlashInterface ` **setImplicitFlush** (*boolean* $implicitFlush) Set the if the output must be implictly flushed to the output or returned as string public :doc:`Phalcon\\FlashInterface ` **setAutomaticHtml** (*boolean* $automaticHtml) Set the if the output must be implictly formatted with HTML public :doc:`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 .. code-block:: php error('This is an error'); public *string* **notice** (*string* $message) Shows a HTML notice/information message .. code-block:: php notice('This is an information'); public *string* **success** (*string* $message) Shows a HTML success message .. code-block:: php success('The process was finished successfully'); public *string* **warning** (*string* $message) Shows a HTML warning message .. code-block:: php warning('Hey, this is important'); public **outputMessage** (*string* $type, *string* $message) Outputs a message formatting it with HTML .. code-block:: php outputMessage('error', $message);