Home
last modified time | relevance | path

Searched refs:project_id (Results 1 – 10 of 10) sorted by path

/plugin/ac/actions/
H A Dtasks.php5 list($project_id, $ticket_id) = $data;
6 $this->project_id = $project_id;
11 $details = $this->ac->get('projects/' . $this->project_id . '/tickets/' . $this->ticket_id);
/plugin/actickets/
H A Dscript.js83 if (acticket.projectId == ticket.project_id
/plugin/asana/remote/
H A DAPILink.php499 foreach( $projects as $project_name => $project_id ){
501 return $project_id;
/plugin/gitlabapi/
H A Dsyntax.php137 $project_id = $project['id'];
157 $this->renderProjectCommits($renderer, $gitlab, $project_id, $data['commits']);
159 $this->renderProjectIssues($renderer, $gitlab, $project_id, $data['issues']);
169 function renderProjectCommits($renderer, $gitlab, $project_id, $number) { argument
170 $commits = $gitlab->getCommits($project_id);
198 function renderProjectIssues($renderer, $gitlab, $project_id, $number) { argument
199 $issues = $gitlab->getIssues($project_id);
238 function renderProjectMilestones($renderer, $gitlab, $project_id, $number) { argument
239 $milestones = $gitlab->getMilestones($project_id);
268 function renderProjectPipelines($renderer, $gitlab, $project_id, $number) { argument
[all …]
/plugin/issuelinks/db/
H A Dupdate0001.sql46 project_id TEXT NOT NULL CHECK(project_id <> ''), field
50 PRIMARY KEY (page, rev, service, project_id, issue_id, is_mergerequest, type),
52 FOREIGN KEY (project_id) REFERENCES issues(project),
/plugin/redissue/redmine/
H A Dredmine.php24 $project_id = $this->client->project->getIdByName($project_name);
25 $project = $this->client->project->show($project_id);
/plugin/timetrack/
H A Daction.php208 foreach($data as $project_id => $taskValues) {
232 foreach($userTime as $project_id => $taskValues) {
233 if(!$this->tthlp->canAccessProject($project_id)) continue;
235 $projectDetails = $this->tthlp->getProjectDetails($project_id);
246 …if(isset($dbUserValues[$project_id][$task_id][$date]) && $dbUserValues[$project_id][$task_id][$dat…
247 $dbUserValues[$project_id][$task_id][$date]['value'] = $value;
248 … $res = $this->tthlp->updateUserTime($dbUserValues[$project_id][$task_id][$date]['id'], $value);
250 $dbUserValues[$project_id][$task_id][$date]['value'] = $value;
261 foreach($userTime as $project_id => $taskValues) {
264 …$dbUserValues[$project_id][$task_id][$date]['value_db'] = $dbUserValues[$project_id][$task_id][$da…
[all …]
H A Dhelper.php132 if(!$project_id) {
141 return $project_id;
149 * @param integer $project_id
250 if(!$project_id) {
254 return $project_id;
266 $project_id);
316 $project_id);
629 * @param unknown $project_id
647 $project_id);
668 $project_id);
[all …]
H A Dsyntax.php78 $project_id = $this->tthlp->getProject($ID, $project_abbr);
79 if(!$project_id) return false;
81 $range = $this->tthlp->getMinMaxDayByProject($project_id);
82 $data = $this->tthlp->getProjectSumByWeek($project_id);
175 …$project_id = $this->tthlp->updateProject($ID, $project_abbr, $project_name,$flags['from'],$flags[…
176 if(!$project_id) return false;
180 $this->tthlp->updateTask($project_id,$task_id,$task_name);
183 …$this->tthlp->setActiveTasks($project_id,array_merge(array($project_abbr),array_keys($flags['tasks…
/plugin/timetrack/db/
H A Dupdate0001.sql10 CREATE TABLE task (id INTEGER PRIMARY KEY, project_id INTEGER, abbr TEXT, name TEXT, active INTEGER… field
11 CREATE UNIQUE INDEX idx_task ON task(project_id,abbr);