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

card.php

Blame
  • user avatar
    Hahn Axel (hahn) authored
    e21d95a9
    History
    card.php 514 B
    <?php 
    
    $aOptions=[
        'type'=>'primary',
        'variant'=>'solid',
    
        'tb-remove'=>1,
        'tb-collapse'=>1,
    
        // 'state'=>'collapsed',
        
        'title'=>'I am a card',
        'tools'=>'123',
        'text'=>'Hello everybody out there!',
        'footer'=>'&copy; Axel',
    ];
    
    
    echo $renderAdminLTE->addRow(
        '<h2>Card</h2>'
    )
    .$renderAdminLTE->addRow(
        '<h3>Syntax</h3>
        <pre>
        echo $renderAdminLTE->getCard($aOptions)
        </pre>
        '
    )
    .showExample('$renderAdminLTE->getCard('.var_export($aOptions, 1).')')
    ;