本文整理匯總了PHP中Technology::SortValues方法的典型用法代碼示例。如果您正苦於以下問題:PHP Technology::SortValues方法的具體用法?PHP Technology::SortValues怎麽用?PHP Technology::SortValues使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Technology
的用法示例。
在下文中一共展示了Technology::SortValues方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: PageContent
<?php
session_start();
header("Cache-control: private");
//IE 6 Fix
include "includes/config.php";
include "includes/checklogin.php";
include "../inc/classes/Technology.php";
include "../inc/classes/TechnologyInfo.php";
include "../inc/classes/Helpers.php";
if (isset($_REQUEST['mode']) && $_REQUEST['mode'] == 'sort') {
$objTechnology = new Technology();
$objTechnology->SortValues(substr($_REQUEST['action'], 1), substr($_REQUEST['action'], 0, 1));
unset($objTechnology);
} elseif (isset($_REQUEST['dragsort'])) {
// handle drag sort ajax request:
$objTechnology = new Technology($_REQUEST['id']);
$new_sort_order = $_REQUEST['idx'] * 10 + 5;
if ($new_sort_order > $objTechnology->SortOrder) {
$new_sort_order += 10;
// increasing sort order so must add another 10
}
$objTechnology->SortOrder = $new_sort_order;
$objTechnology->Update();
echo "success";
exit;
// just exit since this is an ajax request
}
include "includes/pagetemplate.php";
function PageContent()
{