Skip to content
Snippets Groups Projects
Commit 735e224d authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

remove unused pages

parent 05faf0a1
No related branches found
No related tags found
No related merge requests found
<?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
<?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
<?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
<?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
<?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).')')
;
\ No newline at end of file
<?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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment