本文整理匯總了PHP中CUtils::getUserNames方法的典型用法代碼示例。如果您正苦於以下問題:PHP CUtils::getUserNames方法的具體用法?PHP CUtils::getUserNames怎麽用?PHP CUtils::getUserNames使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CUtils
的用法示例。
在下文中一共展示了CUtils::getUserNames方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: explode
$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)) {
$titleBlock->addCrumb('?m=activity&a=reporting', 'View team activity reporting');
}
$titleBlock->addCell('<span class="title">' . $header . '</span>');
$titleBlock->addCell('<form action="?m=activity&a=capture&uid=' . $user_id . '&wk=0" method="post">' . "\n" . '<input type="submit" class="button" value="' . $AppUI->_('Today') . '" />' . "\n" . '</form>' . "\n");
$titleBlock->show();
$min_view = false;
$rollover_day = LOCALE_FIRST_DAY;