本文整理汇总了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");