本文整理汇总了PHP中Accounts::initSortbyField方法的典型用法代码示例。如果您正苦于以下问题:PHP Accounts::initSortbyField方法的具体用法?PHP Accounts::initSortbyField怎么用?PHP Accounts::initSortbyField使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Accounts
的用法示例。
在下文中一共展示了Accounts::initSortbyField方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getParentTab
require_once 'include/database/Postgres8.php';
global $app_strings;
global $list_max_entries_per_page;
$log = LoggerManager::getLogger('account_list');
global $currentModule;
global $theme;
$category = getParentTab();
// focus_list is the means of passing data to a ListView.
global $focus_list;
if (!isset($where)) {
$where = "";
}
$url_string = '';
$focus = new Accounts();
// Initialize sort by fields
$focus->initSortbyField('Accounts');
// END
$smarty = new vtigerCRM_Smarty();
$other_text = array();
if (!$_SESSION['lvs'][$currentModule]) {
unset($_SESSION['lvs']);
$modObj = new ListViewSession();
$modObj->sorder = $sorder;
$modObj->sortby = $order_by;
$_SESSION['lvs'][$currentModule] = get_object_vars($modObj);
}
if ($_REQUEST['errormsg'] != '') {
$errormsg = vtlib_purify($_REQUEST['errormsg']);
$smarty->assign("ERROR", "The User does not have permission to Change/Delete " . $errormsg . " " . $currentModule);
} else {
$smarty->assign("ERROR", "");