Message::ERROR() 

\nn\t3::Message()->ERROR($title = '', $text = ''); 

Gibt eine "ERROR" Flash-Message aus

\nn\t3::Message()->ERROR('Titel', 'Infotext');
Copied!

| @return void

Source Code 

public function ERROR( $title = '', $text = '' ) {
	$this->flash( $title, $text, 'ERROR' );
}
Copied!