当前位置: 首页>>代码示例>>PHP>>正文


PHP ListView::setCurrentModule方法代码示例

本文整理汇总了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 = "&nbsp;<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");
开发者ID:BackupTheBerlios,项目名称:livealphaprint,代码行数:31,代码来源:TasksListView.php


注:本文中的ListView::setCurrentModule方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。