Table of Contents
Callout
A box with colored left border. It has type, title + text.

Syntax
$renderAdminLTE->getCallout($aOptions);
Return
{string} html code
Parameters
- $aOptions - {array} options to describe the element
Styling:
| Key | Description |
|---|---|
| class | optional: additional css classes |
| shadow | size of shadow; one of - [empty] (=default: none) - “none” - “regular” - “large” |
| type | one of - [empty] - “danger” - “info” - “primary” - “secondary” - “success” - “warning” - “dark” - “gray” - “light” |
Remark: in v4
- default shadow is none now
- “small” was removed.
Content:
| Key | Description |
|---|---|
| text | visible text |
| title | title of the callout |
Example
$renderAdminLTE->getCallout(array (
'type' => 'success',
'title' => 'I am a success callout',
'text' => 'This is a gren callout.',
));