Message::ERROR() 

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

Outputs an "ERROR" flash message

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

| @return void

Source Code 

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