Message Groups
You can customize the grouping with the types
config of the helper.
Example
Serious stuff
An error occurred somewhere
This is a warning...
This is a second very interesting warning
Not so serious stuff
Good Job :) You did it
I am some info message for you
Explanations
The above output has the following code in the controller (or view using transient* methods):$this->Flash->warning('This is a warning...');
$this->Flash->error('An error occurred somewhere');
$this->Flash->warning('This is a second very interesting warning');
$this->Flash->success('Good Job :) You did it');
$this->Flash->info('I am some info message for you');