diff --git a/public_html/pages/components/alert.php b/public_html/pages/components/alert.php deleted file mode 100644 index 6910065302d6ada8a2cef18ef77d2388067f06db..0000000000000000000000000000000000000000 --- a/public_html/pages/components/alert.php +++ /dev/null @@ -1,22 +0,0 @@ -<?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).')') -; \ No newline at end of file diff --git a/public_html/pages/components/badge.php b/public_html/pages/components/badge.php deleted file mode 100644 index 6ed392e9fb7c31faf832de274142deb7f9444615..0000000000000000000000000000000000000000 --- a/public_html/pages/components/badge.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -$aOptions=[ - 'type'=>'danger', - 'title'=>'Errors: 5', - 'text'=>'5', -]; - -echo $renderAdminLTE->addRow( - '<h2>Badges</h2>' -) - -// .print_r($renderAdminLTE->showKeyHelp("color"), 1) - -.$renderAdminLTE->addRow( - '<h3>Syntax</h3> - <pre> - echo $renderAdminLTE->getBadge($aOptions) - </pre> - ' -) -.showExample('$renderAdminLTE->getBadge('.var_export($aOptions, 1).')') - - -; \ No newline at end of file diff --git a/public_html/pages/components/button.php b/public_html/pages/components/button.php deleted file mode 100644 index 1b74b26211d9b763676089bb29be383ddcfd7b95..0000000000000000000000000000000000000000 --- a/public_html/pages/components/button.php +++ /dev/null @@ -1,42 +0,0 @@ -<?php - -$aOptions=[ - 'type'=>'primary', - 'text'=>'Click me', -]; - - -// ----- buttons -$sButtontest=''; - -// class "btn-block" -> full width button -foreach(["", "btn-primary", "btn-secondary", "btn-success", "btn-info", "btn-danger", "btn-warning"] as $sBtncolor){ - $buttons=''; - foreach(["", "btn-lg", "btn-sm", "btn-xs", "btn-flat", "disabled"] as $sBtnsize){ - $buttons.=$renderAdminLTE->getButton([ - 'text'=>($sBtncolor ? $sBtncolor : 'default') . " ".$sBtnsize, - 'class'=>$sBtncolor.' '.$sBtnsize, - ]).' '; - } - $sButtontest.=$renderAdminLTE->addCol($buttons, 1 ); - // $sButtontest.='<br><br>'; -} - - -echo $renderAdminLTE->addRow( - '<h2>Buttons</h2>' -) -.$renderAdminLTE->addRow( - '<h3>Syntax</h3> - <pre> - echo $renderAdminLTE->getButton($aOptions) - </pre> - ' -) -.showExample('$renderAdminLTE->getButton('.var_export($aOptions, 1).')') - -.$renderAdminLTE->addRow( - '<h3>Test</h3>' - .$sButtontest -) -; \ No newline at end of file diff --git a/public_html/pages/components/callout.php b/public_html/pages/components/callout.php deleted file mode 100644 index 7a50832cfdcc6f0525d6da3d4d38b1cf1e825b70..0000000000000000000000000000000000000000 --- a/public_html/pages/components/callout.php +++ /dev/null @@ -1,23 +0,0 @@ -<?php - -$aOptions=[ - 'type'=>'success', - 'title'=>'I am a success callout', - 'text'=>'This is a gren callout.', -]; - - -echo $renderAdminLTE->addRow( - '<h2>Callout</h2>' -) -.$renderAdminLTE->addRow( - '<h3>Syntax</h3> - <pre> - echo $renderAdminLTE->getCallout($aOptions) - </pre> - ' -) - -.showExample('$renderAdminLTE->getCallout('.var_export($aOptions, 1).')') - -; \ No newline at end of file diff --git a/public_html/pages/components/card.php b/public_html/pages/components/card.php deleted file mode 100644 index 6a3ae8a3a375d164d0437faec724d3a5ee3eac21..0000000000000000000000000000000000000000 --- a/public_html/pages/components/card.php +++ /dev/null @@ -1,30 +0,0 @@ -<?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'=>'© 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).')') -; \ No newline at end of file diff --git a/public_html/pages/components/infobox.php b/public_html/pages/components/infobox.php deleted file mode 100644 index f900978c51f96b9eb661e1c8a6627f0f6587919e..0000000000000000000000000000000000000000 --- a/public_html/pages/components/infobox.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -$aOptions=[ - 'type'=>'success', - 'bgcolor'=>'', - 'icon'=>'far fa-thumbs-up', - 'text'=>'Likes', - 'number'=>"41,410", - 'progressvalue'=>70, - 'progresstext'=>'70% Increase in 30 Days' -]; - - -echo $renderAdminLTE->addRow( - '<h2>Infobox</h2>' -) -.$renderAdminLTE->addRow( - '<h3>Syntax</h3> - <pre> - echo $renderAdminLTE->getInfobox($aOptions) - </pre> - ' -) -.showExample('$renderAdminLTE->getInfobox('.var_export($aOptions, 1).')') -; \ No newline at end of file