// Value min-max
$htm[] = '<div class="col-xs-4">';
$htm[] = '<div class="form-group">';
$htm[] = '<input type=text class="form-control" id=minmax placeholder="Min - Max">';
$htm[] = '</div>';
$htm[] = '</div>';
// Date
$htm[] = '<div class="col-xs-4">';
$htm[] = '<div class="form-group">';
$htm[] = '<input type=date class="form-control" id=date placeholder="Date">';
$htm[] = '</div>';
$htm[] = '</div>';
// Button Enroll
/*
$htm[]='<div class="col-sm-3">';
$htm[]='<div class="form-group">';
$htm[]='<a href=#btn id="btnEnroll" class="btn btn-default" title="Enroll user"><i class="fa fa-plus-circle"></i> Enroll</a> ';
$htm[]='<a href=#btn id="btnDisEnroll" class="btn btn-default" title="Disenroll"><i class="fa fa-minus-circle"></i> Disenroll</a> ';
$htm[]='<a href="#copy" id="btnCopy" class="btn btn-default" title="Copy enrollments to a different course"><i class="fa fa-copy"></i> Copy</a> ';
*/
$htm[] = '</div></div>';
$htm[] = '</div>';
//end rows
$box = new LTE\Box();
$box->id("boxSearch");
$box->title("Filter");
$box->icon("fa fa-search");
//$box->boxTools("<button class='btn' title='Clear'><i class='fa fa-times'></i></button>");
$box->body($htm);
$box->collapsable(true);
echo $box;
Example #2
0
<section class="content">

<div class='row'>
	<div class='col-md-6'>
	<?php 
$box = new LTE\Box();
$box->title("Dropzone");
$box->id("boxFrames");
$box->body("Drop your images here");
$box->footer("<a href=#gif class='btn btn-default'>Make a gif</a>");
echo $box;
$box = new LTE\Box();
$box->title("Frames");
$box->id("boxFrames");
$box->icon("fa fa-list");
$box->collapsable(1);
//$box->body("Drop your images here");
//$box->footer("<a href=#gif class='btn btn-default'>Make a gif</a>");
echo $box;
?>
	</div>
	<div class='col-md-6'>
	<?php 
$btn = [];
$btn[] = "<a href=#btn class='btn btn-default'><i class='fa fa-step-backward'></i></a>";
$btn[] = "<a href=#btn class='btn btn-default'><i class='fa fa-step-forward'></i></a>";
$btn[] = "<a href=#btn class='btn btn-default'><i class='fa fa-play'></i></a>";
$btn[] = "<a href=#btn class='btn btn-default pull-right'><i class='fa fa-download'></i></a>";
$box = new LTE\Box();
$box->title("Preview");
$box->id("boxPreview");