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

check_packages2install

Blame
  • alert.php 425 B
    <?php 
    
    $aOptions=[
        'type'=>'warning',
        'title'=>'I need your attention',
        'dismissible'=>1,
        'text'=>'Please check it. Maybe there is something wrong here.',
    ];
    
    
    echo $renderAdminLTE->addRow(
        '<h2>Alert</h2>'
    )
    .$renderAdminLTE->addRow(
        '<h3>Syntax</h3>
        <pre>
        echo $renderAdminLTE->getAlert($aOptions)
        </pre>
        '
    )
    .showExample('$renderAdminLTE->getAlert('.var_export($aOptions, 1).')')
    ;