本文整理汇总了PHP中CFunctions::seek方法的典型用法代码示例。如果您正苦于以下问题:PHP CFunctions::seek方法的具体用法?PHP CFunctions::seek怎么用?PHP CFunctions::seek使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CFunctions
的用法示例。
在下文中一共展示了CFunctions::seek方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: CSmartyDP
if ($inactif == "1") {
$where["actif"] = "= '0'";
}
if ($inactif == "0") {
$where["actif"] = "= '1'";
}
$where["group_id"] = "= '{$group->_id}'";
$order = null;
if ($order_col == "text") {
$order = "text {$order_way}";
}
if ($order_col == "type") {
$order = "type {$order_way}, text ASC";
}
if ($filter) {
$functions = $function->seek($filter, $where, "{$page}, {$step}", true, null, $order);
$total_functions = $function->_totalSeek;
} else {
$functions = $function->loadList($where, $order, "{$page}, {$step}");
$total_functions = $function->countList($where);
}
foreach ($functions as $_function) {
$_function->countBackRefs("users");
$_function->countBackRefs("secondary_functions");
}
$function_id = CValue::getOrSession("function_id");
// Création du template
$smarty = new CSmartyDP();
$smarty->assign("inactif", $inactif);
$smarty->assign("functions", $functions);
$smarty->assign("total_functions", $total_functions);