Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by registered user orojlo ( 10 years ago )
<?php
/*
* Paging
*/
$iTotalRecords = 10;
$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("success" => "Pending"),
array("info" => "Closed"),
array("danger" => "On Hold"),
array("warning" => "Fraud")
);
for($i = $iDisplayStart; $i < $end; $i++) {
$status = $status_list[rand(0, 2)];
$id = ($i + 1);
$records["data"][] = array(
'<input type="checkbox" name="id[]" value="'.$id.'">',
$id,
'امیرحسین اروجلو',
'1009872',
'12/09/2013',
'15000',
'15000',
// rand(1, 10),
// '<span class="label label-sm label-'.(key($status)).'">'.(current($status)).'</span>',
'15000',
'15000',
'<a href="[removed];" class="btn btn-sm btn-outline grey-salsa"><i class="fa fa-search"></i> اعتراض</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);
?>
Revise this Paste