Lines Matching +full:user +(+path:plugin +path:do) -(+path:plugin +path:do +path:lang)
55 * keys are: page, md5, date, user, text, creator
77 'INSERT INTO task_assignees (page,md5,user)
94 * - user all tasks to a given user
168 $argn = array('user', 'creator');
175 // replace current user's placeholder
177 function ($user) {
178 return (strtolower($user) === '@user@' && $_SERVER['REMOTE_USER']) ?
180 $user;
211 C.user AS user
229 unset($result[$key]['user']);
233 if ($row['user'] !== null) {
234 $result[$key]['users'][] = $row['user'];
320 * @param array $receivers list of user names to notify
323 * @param string $user user who triggered the notification
326 public function sendMail($receivers, $type, $task, $user = '', $msg = '') argument
351 '@USER@',
359 isset($user) ? $user : $this->getLang('someone'),
507 * Get the html for an icon showing the user's open tasks
509 * If the user has open tasks, a js-overlay is shown on click.
519 $user = $INPUT->server->str('REMOTE_USER');
520 $tasks = $this->loadTasks(array('status' => array('undone'), 'user' => $user));
526 if ($user && $num > 0) {
540 * @param string $user users loginname
544 public function getPrettyUser($user) argument
547 if ($userpage !== '' && $user !== '') {
549 sprintf($userpage, $user),
554 return editorinfo($user);