Message::OK() 

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

Gibt eine "OK" Flash-Message aus

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

| @return void

Source Code 

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