本文整理匯總了PHP中order::reorder_by_array方法的典型用法代碼示例。如果您正苦於以下問題:PHP order::reorder_by_array方法的具體用法?PHP order::reorder_by_array怎麽用?PHP order::reorder_by_array使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類order
的用法示例。
在下文中一共展示了order::reorder_by_array方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: array
// ! Get page id
// ===============
$pages = $val->sanitizePost('page_id');
$sect = $val->sanitizePost('sectionid');
$table = $val->sanitizePost('table');
if (!is_array($pages) && $table == 'pages' || !is_array($sect) && $table == 'sections' || $table != 'pages' && $table != 'sections') {
$ajax = array('message' => $backend->lang()->translate('You sent invalid data'), 'success' => false);
print json_encode($ajax);
exit;
}
// =======================
// ! Reorder the section
// =======================
require CAT_PATH . '/framework/class.order.php';
$id_field = $table == 'pages' ? 'page_id' : 'section_id';
$new_array = $table == 'pages' ? $pages : $sect;
foreach ($new_array as $index => $element) {
$new_array[$index] = intval(str_replace('pageid_', '', str_replace('sectionid_', '', $element)));
}
$order = new order(CAT_TABLE_PREFIX . $table, 'position', $id_field);
$reorder = $order->reorder_by_array($new_array);
if ($reorder === true) {
$ajax = array('message' => $backend->lang()->translate('Re-ordered successfully'), 'success' => true);
print json_encode($ajax);
exit;
} else {
$ajax = array('message' => $backend->lang()->translate($reorder . ': Error re-ordering page'), 'success' => false);
print json_encode($ajax);
exit;
}
exit;