本文整理匯總了PHP中CUtils::getProjectLeaderTasks方法的典型用法代碼示例。如果您正苦於以下問題:PHP CUtils::getProjectLeaderTasks方法的具體用法?PHP CUtils::getProjectLeaderTasks怎麽用?PHP CUtils::getProjectLeaderTasks使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CUtils
的用法示例。
在下文中一共展示了CUtils::getProjectLeaderTasks方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: isset
<?php
//Retrieve all data
if ($projectsId = CUtils::getProjectLeaderProjects($AppUI->user_id)) {
} else {
$AppUI->redirect();
}
$tasksId = CUtils::getProjectLeaderTasks($projectsId);
//Retrieve parameters from GET request
$ago = isset($_GET['ago']) ? $_GET['ago'] : 0;
$dago = isset($_GET['ago']) ? $_GET['ago'] : 0;
$vw = isset($_GET['vw']) ? $_GET['vw'] : 'week';
$time_set = new CDate();
//Build reporting period summary and determine
//the beginning ($sdate) and the end ($edate)
//of the period
$header = $AppUI->_("Activities of ");
switch ($vw) {
case 'week':
$time_set->addDays(7 * $ago);
$sdate = CUtils::getStartOfWeek($time_set, $rollover_day);
$edate = new CDate(CUtils::getEndOfWeek($sdate));
$header = $AppUI->_("Week's activities from") . " " . $AppUI->_($sdate->format('%A')) . " " . $sdate->format('%d/%m/%Y') . " " . $AppUI->_(" to ") . " " . $AppUI->_($edate->format('%A')) . " " . $edate->format('%d/%m/%Y');
break;
case 'month':
$time_set->addMonths($ago);
$sdate = clone $time_set;
$sdate->setDay(1);
$edate = clone $sdate;
$edate->addMonths(1);
$edate->addDays(-1);
示例2: die
<?php
require_once "utils.class.php";
require_once "timesheet.class.php";
if (!defined('DP_BASE_DIR')) {
die('You should not access this file directly.');
}
$AppUI->savePlace();
$projectsIdList = CUtils::getProjectLeaderProjects($AppUI->user_id);
if ($projectsIdList) {
$projectLeaderTasksIdList = CUtils::getProjectLeaderTasks($projectsIdList);
}
if ($projectLeaderTasksIdList) {
if (isset($_GET['uid']) and CUtils::isProjectLeaderOfThisUser($projectLeaderTasksIdList, $_GET['uid'])) {
$user_id = $_GET['uid'];
} else {
$user_id = $AppUI->user_id;
}
$projectLeaderTasksIdList = explode(',', $projectLeaderTasksIdList);
} else {
$user_id = $AppUI->user_id;
}
$names = CUtils::getUserNames($user_id);
// setup the title block
$titleBlock = new CTitleBlock('User activities capture', 'activities.png', $m, "{$m}.{$a}");
$header = $AppUI->_('Activities of') . " ";
if ($names) {
$header .= $names[1] . " " . $names[0] . " ";
}
//Display reporting crumb only if project leader
if (CUtils::getProjectLeaderProjects($AppUI->user_id)) {