Blame |
Last modification |
View Log
| Download
| RSS feed
<?php
/*
* Paging
*/
$iTotalRecords = 0;
$iDisplayLength = intval($_REQUEST['length']);
$iDisplayLength = $iDisplayLength < 0 ?
$iTotalRecords : $iDisplayLength;
$iDisplayStart = intval($_REQUEST['start']);
$sEcho = intval($_REQUEST['draw']);
$records = array();
$records["data"] = array();
$end = $iDisplayStart + $iDisplayLength;
$end = $end > $iTotalRecords ?
$iTotalRecords : $end;
$status_list = array(
array("info" => "Pending"),
array("success" => "Paid"),
array("danger" => "Canceled")
);
for($i = $iDisplayStart; $i < $end; $i++) {
$status = $status_list[rand(0, 2)];
$id = ($i + 1);
$records["data"][] = array(
$id,
'Test Customer',
'12/09/2013',
rand(3,10),
'<a href="javascript:;" class="btn btn-sm default btn-editable"><i class="fa fa-print"></i> Print</a>',
);
}
if (isset($_REQUEST["customActionType"]) && $_REQUEST["customActionType"] == "group_action") {
$records["customActionStatus"] = "OK"; // pass custom message(useful for getting status of group actions)
$records["customActionMessage"] = "Group action successfully has been completed. Well done!"; // pass custom message(useful for getting status of group actions)
}
$records["draw"] = $sEcho;
$records["recordsTotal"] = $iTotalRecords;
$records["recordsFiltered"] = $iTotalRecords;
echo json_encode($records);
?>