Skip to content
Snippets Groups Projects
Select Git revision
  • c632728c3af1220405caef45ee7ec0093f8e50a5
  • main default protected
2 results

Callout.md

Blame
  • Callout

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

    Callout

    Syntax

    $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

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