Skip to content
Snippets Groups Projects
Select Git revision
  • 38af25d175dbc446de345402dcb493d14ac3168f
  • master default protected
2 results

init.sh.cfg

Blame
  • infobox.php 469 B
    <?php 
    
    $aOptions=[
        'type'=>'success',
        'bgcolor'=>'',
        'icon'=>'far fa-thumbs-up',
        'text'=>'Likes',
        'number'=>"41,410",
        'progressvalue'=>70,
        'progresstext'=>'70% Increase in 30 Days'
    ];
    
    
    echo $renderAdminLTE->addRow(
        '<h2>Infobox</h2>'
    )
    .$renderAdminLTE->addRow(
        '<h3>Syntax</h3>
        <pre>
        echo $renderAdminLTE->getInfobox($aOptions)
        </pre>
        '
    )
    .showExample('$renderAdminLTE->getInfobox('.var_export($aOptions, 1).')')
    ;