## Callout

A box with colored left border. It has type, title + text.

![Callout](../images/examples_callout.png)

### Syntax

```php
$renderAdminLTE->getCallout($aOptions);
```

### Return

{string} html code

### Parameters

* $aOptions - {array} options to describe the element

Styling:

Key      | Description
---      | ---
class    | optional: additional css classes
type     | one of [none]\|danger\|dark\|info\|primary\|secondary\|success\|warning

Content:

Key      | Description
---      | ---
text     | visible text
title    | title of the callout

### Example

```php
$renderAdminLTE->getCallout(array (
  'type' => 'success',
  'title' => 'I am a success callout',
  'text' => 'This is a gren callout.',
));
```