Skip to content
Snippets Groups Projects
Select Git revision
  • f45416ffa1804e1cb9809f3650c9a296f8fa5eb2
  • master default protected
  • simple-task/7248-eol-check-add-node-22
  • 6877_check_iml_deployment
4 results

check_snmp_data

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