/plugin/authgooglesheets/vendor/google/apiclient-services/src/ |
H A D | Tasks.php | 45 public $tasks; variable in Google\\Service\\Tasks 61 $this->serviceName = 'tasks'; 90 'path' => 'tasks/v1/users/@me/lists', 133 'tasks', 147 'path' => 'tasks/v1/lists/{tasklist}/tasks/{task}', 162 'path' => 'tasks/v1/lists/{tasklist}/tasks/{task}', 177 'path' => 'tasks/v1/lists/{tasklist}/tasks', 195 'path' => 'tasks/v1/lists/{tasklist}/tasks', 245 'path' => 'tasks/v1/lists/{tasklist}/tasks/{task}/move', 268 'path' => 'tasks/v1/lists/{tasklist}/tasks/{task}', [all …]
|
H A D | CloudTasks.php | 242 'tasks', 246 'path' => 'v2/{+parent}/tasks', 280 'path' => 'v2/{+parent}/tasks',
|
/plugin/asana/remote/ |
H A D | APILink.php | 159 $tasks = array(); 170 $tasks = array_merge($tasks,$tasks_current); 182 $tasks = array_merge($tasks,$tasks_current); 196 $tasks = array_merge($tasks,$tasks_current); 211 $tasks = array_merge($tasks,$tasks_current); 218 $tasks = $this->tag_filter($tag_key,$tasks); 224 $tasks = $this->string_filter($string, $tasks); 228 $tasks = $this->due_date_sort($tasks); 412 return $tasks; 425 return $tasks; [all …]
|
/plugin/do/db/ |
H A D | update0007.sql | 6 INSERT INTO task_assignees (page, md5, user) SELECT page,md5,user FROM tasks WHERE user != ''; 8 -- Remove the user column from tasks 10 INSERT INTO tasks_tmp SElECT page, md5, date, text , creator , pos FROM tasks; 11 DROP TABLE tasks; 13 CREATE TABLE tasks ( page, md5, date, text , creator , pos); table 14 INSERT INTO tasks SElECT page, md5, date, text , creator , pos FROM tasks_tmp;
|
H A D | update0006.sql | 4 REPLACE INTO task_status SELECT task_status.page as page, task_status.md5 as md5, task_status.status as status, task_status.closedby as closedby, tasks.msg as msg FROM task_status, tasks WHERE task_status.md5 = tasks.md5; 6 ALTER TABLE tasks DROP msg;
|
H A D | update0001.sql | 1 CREATE TABLE tasks ( table 9 CREATE UNIQUE INDEX idx_tasks_page_md5 ON tasks(page, md5);
|
H A D | update0003.sql | 2 ALTER TABLE tasks ADD creator;
|
/plugin/yuriigantt/src/Driver/ |
H A D | Embedded.php | 242 $tasks =& $database->gantt->data; 244 for ($i = 0; $i < count($tasks); $i++) { 245 if ($tasks[$i]->id == $task->id) { 246 $tasks[$i] = $task; 264 $tasks =& $database->gantt->data; 265 $tasks = array_column($tasks, null, 'id'); //re-index by ID 279 $deleteChildren = function ($parentId) use (&$tasks, &$deleteChildren, $deleteLinks) { 280 foreach ($tasks as &$task) { 290 $tasks[$id] = null; 291 $tasks = array_values(array_filter($tasks));
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTasks/ |
H A D | ListTasksResponse.php | 47 public function setTasks($tasks) argument 49 $this->tasks = $tasks; 56 return $this->tasks;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/ |
H A D | GoogleCloudRunV2ListTasksResponse.php | 47 public function setTasks($tasks) argument 49 $this->tasks = $tasks; 56 return $this->tasks;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/ |
H A D | GoogleCloudDataplexV1ListTasksResponse.php | 51 public function setTasks($tasks) argument 53 $this->tasks = $tasks; 60 return $this->tasks;
|
/plugin/do/syntax/ |
H A D | dolist.php | 108 $tasks = $hlp->loadTasks($data); 110 if (count($tasks) === 0) { 120 $R->doc .= $this->buildTasklistHTML($tasks, isset($data['user']), isset($data['creator'])); 126 * @param array $tasks 132 public function buildTasklistHTML(array $tasks, $hideUser, $hideCreator) argument 151 foreach ($tasks as $row) {
|
/plugin/rtmchecklist/ |
H A D | syntax.php | 91 $tasks = array(); 109 $tasks = array(); 111 $tasks = preg_split('/[\|\n]/u', $match); 115 return array('tasks' => $tasks, 'start' => $start, 'end' => $end);
|
/plugin/openlayersmap/ol7/ |
H A D | generate-info.js.diff |
|
/plugin/davcal/vendor/sabre/dav/bin/ |
H A D | build.php | 4 $tasks = [ variable 30 if (!isset($tasks[$currentTask])) { 43 if (!isset($tasks[$task])) { 47 $dependencies = $tasks[$task];
|
/plugin/bez/cron/ |
H A D | functions.php | 41 $tasks = $action->get_model()->taskFactory->get_all($filters); 44 foreach ($tasks as $task) { 55 //email => array('user' => array('issues' => array(), 'tasks' => array())) 76 $tasks = $action->get_model()->taskFactory->get_all(array( 80 foreach ($tasks as $task) {
|
/plugin/bez/ctl/ |
H A D | 8d.php | 29 $tasks = $this->model->taskFactory->get_by_type($thread); variable 30 $this->tpl->set('8d_tasks', $tasks); 34 foreach ($tasks['preventive'] as $preventive_action) {
|
H A D | kp.php | 21 $tasks = $this->model->taskFactory->get_with_closing_comment($thread)->fetchAll(); variable 22 $this->tpl->set('tasks', $tasks)
|
H A D | thread.php | 27 $tasks = $this->model->taskFactory->get_from_thread($thread); variable 29 $timeline = array_merge($thread_comments, $tasks['corrections']); 38 $this->tpl->set('tasks', $tasks);
|
/plugin/syntaxhighlighter3/sxh3/ |
H A D | Gruntfile.coffee | 2 require('./build/tasks')(grunt) 3 require('./tests/tasks')(grunt)
|
/plugin/do/ |
H A D | helper.php | 38 * Delete the all tasks from a given page id 47 $this->db->query('DELETE FROM tasks WHERE page = ?', $id); 66 'INSERT INTO tasks (page,md5,date,text,creator,pos) 87 * Load all tasks with given filters. 92 * - status can be done or undone to filter for (un)completed tasks 94 * - user all tasks to a given user 212 FROM tasks A LEFT JOIN task_status B 242 * Toggles a tasks status. 245 * @param string $md5 tasks md5 hash 270 FROM tasks [all...] |
/plugin/tablelayout/ |
H A D | Gruntfile.js | 14 tasks: ['qunit'] 18 tasks: ['eslint']
|
/plugin/ac/actions/ |
H A D | tasks.php | 12 if (count($details->tasks) === 0) { 16 foreach($details->tasks as $task) {
|
/plugin/bez/ |
H A D | cli.php | 37 $tasks = $action->get_model()->taskFactory->get_all(); 38 foreach ($tasks as $task) {
|
/plugin/yuriigantt/3rd/dhtmlxgantt/ |
H A D | dhtmlxgantt.d.ts | 103 histogram_cell_allocated(start_date: Date, end_date: Date, resource: any, tasks: any[]): void; 112 histogram_cell_capacity(start_date: Date, end_date: Date, resource: any, tasks: any[]): void; 121 histogram_cell_class(start_date: Date, end_date: Date, resource: any, tasks: any[]): void; 130 histogram_cell_label(start_date: Date, end_date: Date, resource: any, tasks: any[]): void; 197 resource_cell_class(start_date: Date, end_date: Date, resource: any, tasks: any[]): string; 206 resource_cell_value(start_date: Date, end_date: Date, resource: any, tasks: any[]): string;
|