Message::WARNING() 

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

Outputs a "WARNING" flash message

\nn\t3::Message()->WARNING('Title', 'Info text');
Copied!

| @return void

Source Code 

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