/plugin/bez/mdl/ |
H A D | TaskFactory.php | 39 foreach ($tasks as $task) { 41 $by_thread_comment['corrections'][$task->id] = $task; 47 $by_thread_comment[$task->thread_comment_id][$task->id] = $task; 70 foreach ($stmt as $task) { 71 $by_type[$task->type][$task->id] = $task; 152 … $task->set_participant_flags($task->original_poster, array('subscribent', 'original_poster')); 153 $task->set_participant_flags($task->assignee, array('subscribent', 'assignee')); 167 $task->thread->mail_notify_task_added($task); 182 $task->set_participant_flags($task->assignee, array('subscribent', 'assignee')); 185 if ($task->thread_id != '' && $task->assignee != $prev_assignee) { [all …]
|
H A D | Task_commentFactory.php | 9 public function get_from_task(Task $task) { argument 10 return $this->get_all(array('task_id' => $task->id), '', array('task' => $task)); 20 …if ($task_comment->task->thread_id != '' && $task_comment->task->type != 'preventive' && $task_com… 35 $task_comment->task->set_state('done'); 42 $task_comment->task->set_state('opened'); 49 $task_comment->task->update_virutal(); 51 if ($task_comment->task->thread_id != '') { 61 … $task_comment->task->thread->mail_notify_task_state_changed($task_comment->task); 73 …if ($task_comment->task->thread_id != '' && $task_comment->task->type != 'preventive' && $task_com… 91 …if ($obj->task->thread_id != '' && $obj->task->type != 'preventive' && $obj->task->thread->state … [all …]
|
H A D | Task_comment.php | 11 protected $task; variable in dokuwiki\\plugin\\bez\\mdl\\Task_comment 23 if ($this->task == null) { 24 $this->task = $this->model->taskFactory->get_one($this->task_id); 26 return $this->task; 49 $this->task = $defaults['task']; 50 $this->task_id = $this->task->id; 59 $this->task = $defaults['task']; 96 $this->task->mail_notify($content, false, $info['img']);
|
/plugin/bez/tpl/ |
H A D | tasks.php | 174 <?php $hours = $tpl->date_diff_hours($task->start_time, $task->finish_time) ?> 176 …<tr class="<?php if ($task->state == 'opened') echo 'priority_' . $task->priority ?>" data-bez-row… 182 <?php if ($task->thread_id != '') echo '#'.$task->thread_id ?> 183 #z<?php echo $task->id ?> 204 <?php echo $task->content_html ?> 211 <?php echo $task->plan_date ?> 216 <?php echo $task->start_time ?> - <?php echo $task->finish_time ?> 221 <?php if ($task->cost == ''): ?> 224 <?php echo $task->cost ?> 236 <?php if ($task->start_time == ''): ?> [all …]
|
H A D | 8d_tasks.php | 11 <?php foreach($tpl->get('tasks') as $task): ?> 15 #z<?php echo $task->id ?> 20 <?php echo $task->content_html ?> 21 <?php if($task->task_comment_content_html != ''): ?> 23 <?php echo $task->task_comment_content_html ?> 26 <td><?php echo $tpl->user_name($task->assignee) ?></td> 27 <td><?php echo $task->plan_date ?></td> 29 <?php if ($task->cost == ''): ?> 32 <?php echo $task->cost ?> 36 <?php if ($task->state == 'opened'): ?> [all …]
|
H A D | 8d_tasks_no_closing.php | 10 <?php foreach($tpl->get('tasks') as $task): ?> 13 <a href="<?php echo $tpl->url('task', 'tid', $task->id) ?>"> 14 #z<?php echo $task->id ?> 17 <td><?php echo lcfirst($tpl->getLang('task_' . $task->state)) ?></td> 19 <?php echo $task->content_html ?> 21 <td><?php echo $tpl->user_name($task->assignee) ?></td> 22 <td><?php echo $task->plan_date ?></td> 24 <?php if ($task->cost == ''): ?> 27 <?php echo $task->cost ?>
|
H A D | 8d_tasks_only_closing.php | 7 <?php foreach($tpl->get('tasks') as $task): ?> 10 <a href="<?php echo $tpl->url('task', 'tid', $task->id) ?>"> 11 #z<?php echo $task->id ?> 15 <?php if($task->task_comment_content_html == ''): ?> 18 <?php echo $task->task_comment_content_html ?> 22 <?php echo $tpl->date($task->close_date) ?>
|
H A D | report.php | 187 <?php foreach ($tpl->get('tasks') as $task): ?> 193 <?php echo $task['task_program_name'] ?> 196 <td><?php echo $task['opened'] ?></td> 197 <td><?php echo $task['closed_on_time'] ?></td> 199 <td><?php echo $task['count_all'] ?></td> 217 <?php foreach ($tpl->get('tasks') as $task): ?> 223 <?php echo $task['task_program_name'] ?> 227 <?php if (empty($task['total_cost'])) : ?> 230 <?php echo $task['total_cost'] ?> 234 <?php if (empty($task['cost_of_closed'])) : ?> [all …]
|
/plugin/bez/tpl/cron/ |
H A D | weekly-message-tasks.php | 8 <?php foreach ($tpl->get('tasks') as $task): ?> 10 switch($task->priority) { 23 <td><a href="<?php echo $tpl->url('task', 'tid', $task->id) ?>"> 24 #z<?php echo $task->id ?> 26 <td><?php echo $tpl->date($task->create_date) ?></td> 28 <?php echo $task->plan_date ?> 29 <?php if ($task->all_day_event == '0'): ?> 30 <?php echo $task->start_time ?> - <?php echo $task->finish_time ?> 33 <td><?php echo $task->content_html ?></td>
|
/plugin/task/ |
H A D | helper.php | 65 $task = $this->readTask($id); 95 $date = $task['date']['due']; 105 if ($task['status'] != 1 && $task['status'] != 2) continue; 117 if (($task['status'] < 0) || ($task['status'] > 2)) continue; 125 if (($filter == 'new') && ($task['user']['name'] || ($task['status'] != 0))) continue; 308 function _notify($task) { argument 344 function _vtodo($id, $task) { argument 357 if ($task['date']['created']) 359 if ($task['date']['modified']) 361 if ($task['date']['due']) [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Tasks/Resource/ |
H A D | Tasks.php | 51 * @param string $task Task identifier. 54 public function delete($tasklist, $task, $optParams = []) argument 56 $params = ['tasklist' => $tasklist, 'task' => $task]; 64 * @param string $task Task identifier. 68 public function get($tasklist, $task, $optParams = []) argument 70 $params = ['tasklist' => $tasklist, 'task' => $task]; 139 * @param string $task Task identifier. 149 public function move($tasklist, $task, $optParams = []) argument 151 $params = ['tasklist' => $tasklist, 'task' => $task]; 160 * @param string $task Task identifier. [all …]
|
/plugin/yuriigantt/3rd/dhtmlxgantt/ |
H A D | dhtmlxgantt.d.ts | 48 grid_blank(task: any): string; 61 grid_file(task: any): string; 67 grid_folder(task: any): string; 80 grid_indent(task: any): string; 86 grid_open(task: any): string; 1394 copy(task: any): any; 1444 defined(task: any): boolean; 1634 getFreeSlack(task: any): number; 1848 getTaskCalendar(task: any): any; 1896 getTaskType(task: any): string; [all …]
|
/plugin/bez/ctl/ |
H A D | task.php | 15 $task = $this->model->taskFactory->get_one($this->get_param('tid')); variable 16 $this->tpl->set('task', $task); 44 $task->invite($client); 50 $task->remove_participant($user_id); 78 $this->tpl->set_values($task->get_assoc()); 80 $this->model->taskFactory->update_save($task, $_POST); 84 $this->model->taskFactory->delete($task); 85 if ($task->thread_id != '') { 92 $task->pin($thread_id); 95 $task->unpin(); [all …]
|
H A D | thread.php | 108 $task = $this->model->taskFactory->create_object($defaults); variable 109 $this->tpl->set('task_new', $task); 113 $this->model->taskFactory->initial_save($task, $_POST); 115 $anchor = 'z' . $task->id; 120 $task = $this->model->taskFactory->get_one($this->get_param('tid'), array('thread' => $thread)); variable 121 $this->tpl->set('task', $task); 125 $this->tpl->set_values($task->get_assoc()); 127 $this->model->taskFactory->update_save($task, $_POST); 129 $anchor = 'z' . $task->id; 134 $task = $this->model->taskFactory->get_one($this->get_param('tid'), array('thread' => $thread)); variable [all …]
|
H A D | start.php | 87 foreach ($tasks as $task) { 88 if ($task->acl_of('id') < BEZ_PERMISSION_VIEW) continue; 90 $timeline->push($task->create_date, 'task_opened', $task->assignee, $task); 92 if ($task->state == 'done') { 93 $timeline->push($task->last_activity_date, 'task_done', $task->assignee, $task); 98 if ($task_comment->task->acl_of('id') < BEZ_PERMISSION_VIEW) continue;
|
/plugin/asana/remote/ |
H A D | APILink.php | 229 foreach( $tasks as $task){ 230 …task['project'] . " </td><td> " . "<a href='https://app.asana.com/0/".$this->project_find($this->p… 281 function render_comments($task){ argument 408 $tasks[]=$task; 423 $tasks[]=$this->task($task['id']); 429 function task($task_ID){ function in remote_plugin_asana_APILink 433 $task = array(); 436 return $task; 511 if(strstr($task['name'],$string) or strstr($task['desc'],$string)){ 512 $tasks_cp[] = $task; [all …]
|
/plugin/bez/db/ |
H A D | update0001.sql | 176 ON task 186 ON task 196 ON task 208 ON task 218 ON task 228 ON task 238 ON task 248 ON task 263 ON task 272 ON task [all …]
|
H A D | update0002.sql | 9 task.*, 12 CASE WHEN task.state = 'done' THEN NULL 13 WHEN task.plan_date >= date('now', '+1 month') THEN '0' 14 WHEN task.plan_date >= date('now') THEN '1' 16 FROM task 17 LEFT JOIN task_program ON task.task_program_id = task_program.id 18 LEFT JOIN thread ON task.thread_id = thread.id;
|
/plugin/davcal/vendor/sabre/dav/bin/ |
H A D | build.php | 41 foreach($oldTaskList as $task=>$foo) { 43 if (!isset($tasks[$task])) { 44 echo "Dependency not found: " . $task, "\n"; 47 $dependencies = $tasks[$task]; 61 unset($oldTaskList[$task]); 62 $newTaskList[$task] = 1; 69 foreach(array_keys($newTaskList) as $task) { 71 echo "task: " . $task, "\n"; 72 call_user_func($task);
|
/plugin/yuriigantt/3rd/dhtmlxgantt/sources/ext/ |
H A D | dhtmlxgantt_undo.js | 133 task: "task" property in gantt.config.undo_types 164 if (!task) { 167 if (task.id === oldId) { 168 task.id = newId; 170 if (task.parent === oldId) { 171 task.parent = newId; 334 …this._storeEntityCommand(task, this.getInitialTask(task.id), this._undo.command.type.move, this._u… 370 var task = null; 376 tasks.push(task); 517 _this.store(task.id, gantt.config.undo_types.task); [all …]
|
/plugin/bez/cron/ |
H A D | functions.php | 44 foreach ($tasks as $task) { 45 $plan_date = new DateTime($task->plan_date); 46 …$task->mail_notify_remind($task->get_participants('subscribent'), $plan_date->diff($now)->format('… 80 foreach ($tasks as $task) { 81 $key = $task->assignee; 90 if ($task->priority == '1') { 91 $msg[$key]['coming_tasks'][] = $task; 93 $msg[$key]['outdated_tasks'][] = $task;
|
/plugin/yuriigantt/src/Driver/ |
H A D | Embedded.php | 238 public function updateTask(Task $task) argument 245 if ($tasks[$i]->id == $task->id) { 246 $tasks[$i] = $task; 253 return $task; 280 foreach ($tasks as &$task) { 283 $deleteLinks($task->id); 284 $task = null; 301 public function addTask(Task $task) argument 305 $task->id = $database->increment->task++; 306 $database->gantt->data[] = $task; [all …]
|
/plugin/do/ |
H A D | helper.php | 285 $recs = (array)$task['users']; 286 $recs[] = $task['creator']; 312 $this->sendMail($recs, 'reopen', $task, $name); 322 * @param array $task 360 isset($task['date']) ? $task['date'] : $this->getLang('nodue'), 361 $task['text'], 362 wl($task['page'], '', true, '&') . '#plgdo__' . $task['md5'], 454 foreach ($tasks as $task) { 455 if (empty($task['status'])) { 460 if (!empty($task['date']) && empty($task['status'])) { [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTasks/ |
H A D | CreateTaskRequest.php | 46 public function setTask(Task $task) argument 48 $this->task = $task; 55 return $this->task;
|
/plugin/task/syntax/ |
H A D | task.php | 12 var $task = array(); variable in syntax_plugin_task_task 37 $task = array( 49 $my->writeTask($ID, $task); 52 $my->writeTask($ID, $task); 70 $task = array(); 72 $task = $this->my->readTask($ID); 100 } elseif ($task['user']['name']) { 106 } elseif ($task['date']['due']) { 107 $this->_tablerow('date', $this->_hCalDate($task['date']['due']), $renderer, $due); 151 $this->task = $this->my->readTask($ID); [all …]
|