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

index.php

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