Abstract class Phalcon\Flash
Shows HTML notifications related to different circumstances. Classes can be stylized using CSS
<?php
$flash->success("The record was successfully deleted");
$flash->error("Cannot open the file");
Methods
public __construct ([unknown $cssClasses])
Phalcon\Flash constructor
public Phalcon\FlashInterface setImplicitFlush (unknown $implicitFlush)
Set whether the output must be implictly flushed to the output or returned as string
public Phalcon\FlashInterface setAutomaticHtml (unknown $automaticHtml)
Set if the output must be implictily formatted with HTML
public Phalcon\FlashInterface setCssClasses (unknown $cssClasses)
Set an array with CSS classes to format the messages
public string error (unknown $message)
Shows a HTML error message
<?php
$flash->error('This is an error');
public string notice (unknown $message)
Shows a HTML notice/information message
<?php
$flash->notice('This is an information');
public string success (unknown $message)
Shows a HTML success message
<?php
$flash->success('The process was finished successfully');
public string warning (unknown $message)
Shows a HTML warning message
<?php
$flash->warning('Hey, this is important');
public outputMessage (unknown $type, unknown $message)
Outputs a message formatting it with HTML
<?php
$flash->outputMessage('error', message);