本文整理匯總了PHP中ListView::setCurrentModule方法的典型用法代碼示例。如果您正苦於以下問題:PHP ListView::setCurrentModule方法的具體用法?PHP ListView::setCurrentModule怎麽用?PHP ListView::setCurrentModule使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ListView
的用法示例。
在下文中一共展示了ListView::setCurrentModule方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Task
$current_module_strings = return_module_language($current_language, 'Tasks');
global $urlPrefix;
global $currentModule;
global $current_user;
global $image_path;
global $theme;
// focus_list is the means of passing data to a ListView.
global $focus_list;
require_once 'include/ListView/ListView.php';
global $timedate;
$today = $timedate->to_db_date(date("Y-m-d"), false);
$today = $timedate->handle_offset($today, $timedate->dbDayFormat, true);
$where = "tasks.assigned_user_id='{$current_user->id}' and tasks.status<>'Completed' and tasks.status<>'Deferred'";
$where .= "and (tasks.date_start is NULL or tasks.date_start <= '{$today}')";
$seedTask = new Task();
global $task_title;
$title_display = $current_module_strings['LBL_LIST_FORM_TITLE'];
if ($task_title) {
$title_display = $task_title;
}
$sugar_config['disable_export'] = true;
$ListView = new ListView();
$header_text = '';
if (is_admin($current_user) && $_REQUEST['module'] != 'DynamicLayout' && !empty($_SESSION['editinplace'])) {
$header_text = " <a href='index.php?action=index&module=DynamicLayout&from_action=TasksListView&from_module=" . $_REQUEST['module'] . "&mod_class=Tasks'>" . get_image($image_path . "EditLayout", "border='0' alt='Edit Layout' align='bottom'") . "</a>";
}
$ListView->initNewXTemplate('modules/Calendar/TasksListView.html', $current_module_strings);
$ListView->setCurrentModule("Tasks");
$ListView->setHeaderTitle($title_display . $header_text);
$ListView->setQuery($where, "", "date_due,status desc", "TASK");
$ListView->processListView($seedTask, "main", "TASK");