Skip to content
Snippets Groups Projects
Select Git revision
  • efc82aad19df21bb515c5b6ca08a46ab58ce3da9
  • master default protected
  • Legacy_Php7
3 results

act_rollback.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).')')
    ;