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

card.php

Blame
  • card.php 436 B
    <?php 
    
    $aOptions=[
        'type'=>'primary',
        'variant'=>'solid',
        '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).')')
    ;