Message::OK()
\nn\t3::Message()->OK($title = '', $text = '');
Outputs an "OK" flash message
\nn\t3::Message()->OK('Title', 'Info text');
Copied!
| @return void
Source Code
public function OK( $title = '', $text = '' ) {
$this->flash( $title, $text );
}
Copied!