/plugin/bez/tpl/cron/ |
H A D | weekly-message.php | 42 <?php foreach ($tpl->get('issues') as $issue): ?> 44 switch($issue->priority) { 57 <td><a href="<?php echo $tpl->url('thread', 'id', $issue->id) ?>"> 58 #<?php echo $issue->id ?> 60 <td><?php echo $issue->label_name ?></td> 61 <td><?php echo $issue->title ?></td> 62 <td><?php echo $issue->create_date ?> (<?php echo $tpl->date_fuzzy_age($issue->create_date) ?>)</td> 63 <td><?php echo $issue->task_count_closed ?>/<?php echo $issue [all...] |
/plugin/issuelinks/services/ |
H A D | GitLab.service.php | 39 * @param Issue $issue 45 $summary = $issue->getSummary(); 47 $status = $issue->getStatus(); 306 $issue->getFromDB(); 307 return $issue; 319 $mergeRequestText = $issue->getSummary() . ' ' . $issue->getDescription(); 333 * @param Issue $issue 431 $issue->saveToDB(); 444 $issue->saveToDB(); 446 $issueText = $issue->getSummary() . ' ' . $issue->getDescription(); [all …]
|
H A D | GitHub.service.php | 48 $summary = $issue->getSummary(); 50 $status = $issue->getStatus(); 52 $type = $issue->getType(); 71 return $issue; 76 $issue->getFromDB(); 78 return $issue; 386 return $issue->saveToDB(); 390 * @param Issue $issue 408 $issue->setLabels($labels); 469 $mergeRequestText = $issue->getSummary() . ' ' . $issue->getDescription(); [all …]
|
H A D | Jira.service.php | 47 * @param Issue $issue 51 public static function isIssueValid(Issue $issue) argument 53 $summary = $issue->getSummary(); 55 $status = $issue->getStatus(); 57 $type = $issue->getType(); 108 $issue = Issue::getInstance('jira', $projectKey, $issueNumber, false); 109 $issue->getFromDB(); 111 return $issue; 473 list($projectKey, $issueId) = explode('-', $data['issue']['key']); 492 $issueData = $data['issue'];
|
/plugin/issuetracker/ |
H A D | edit.php | 49 $lang['issuemod_title'].$issue['title'].chr(10). 50 $lang['issuemod_issueid'].$issue['id'].chr(10). 51 $lang['issuemod_product'].$issue['product'].chr(10). 52 $lang['issuemod_version'].$issue['version'].chr(10). 54 $lang['issuemod_status'].$issue['status'].chr(10). 64 $to = $issue['user_mail']; 65 $cc = $issue['add_user_mail']; 97 $lang['issuemod_title'].$issue['title'].chr(10). 98 $lang['issuemod_issueid'].$issue['id'].chr(10). 102 $lang['issuemod_status'].$issue['status'].chr(10). [all …]
|
H A D | action.php | 1467 elseif(!$issue) { 2677 $cc=$issue['add_user_mail'].', '.$issue['assigned']; 2678 if(stripos($to.$cc,$issue['assigned'])==false) $cc .=', '.$issue['assigned']; 2740 if($user_mail['userinfo']['mail']===$issue['user_mail']) $to=$issue['assigned']; 2741 elseif($user_mail['userinfo']['mail']===$issue['assigned']) $to=$issue['user_mail']; 2742 else $to=$issue['user_mail'].', '.$issue['assigned']; 2813 if($user_mail['userinfo']['mail']===$issue['user_mail']) $to=$issue['assigned']; 2814 elseif($user_mail['userinfo']['mail']===$issue['assigned']) $to=$issue['user_mail']; 2815 else $to=$issue['user_mail'].', '.$issue['assigned']; 2866 else $to=$issue['user_mail'].', '.$issue['assigned']. "\r\n"; [all …]
|
H A D | syntax.php | 413 foreach ($issues as $issue) 708 $issue = $issues[$i]; 910 function _get_one_value($issue, $key) { argument 911 if (@array_key_exists($key,$issue)) 912 return $issue[$key]; 919 function _get_assignee($issue, $key) { argument 920 if(!$issue) return; 921 if (array_key_exists($key,$issue)) { 955 …bject=sprintf($this->getLang('issuenew_subject'),$issue['severity'], $project, $issue['product'],$… 977 $cc=$issue['add_user_mail']; [all …]
|
H A D | README | 2 * IssueTracker Plugin: allows to create simple issue tracker 11 be added to an issue log (project). Some checks are implemented to prove if 16 new entry to the issue list. The complete issue list delivers a detailed 24 into the lists select box to be easily set as issue related contact. 65 about issue mod 105 1. Report an issue 121 Issue Title the headline of the issue 122 Issue Description user to enter the issue details 132 issue to a member of configured user-groups (see configuration). 149 issue information except comments. Each issue will have a related comments file [all …]
|
H A D | itsearch.php | 60 foreach($issues as &$issue) { 61 $issue['project'] = $project; 73 foreach($issues as &$issue) { 74 $issue_string = implode($issue); 76 …'it_data']==false) $comments_file = DOKU_CONF."../data/meta/".$issue['project']."_".$issue['id']. … 77 …= DOKU_CONF."../". $conf['plugin']['issuetracker']['it_data'].$issue['project']."_".$issue['id']. … 92 $ref_findings['issues'][$cnt_i_findings] = $issue; 104 $ref_findings['comment'][$cnt_c_findings] = $issue;
|
/plugin/bez/tpl/ |
H A D | report.php | 26 <?php foreach ($tpl->get('issues') as $issue): ?> 29 <?php if (empty($issue['label_name'])) : ?> 32 <?php echo $issue['label_name'] ?> 35 <td><?php echo $issue['proposal'] ?></td> 36 <td><?php echo $issue['opened'] ?></td> 37 <td><?php echo $issue['done'] ?></td> 38 <td><?php echo $issue['closed'] ?></td> 39 <td><?php echo $issue['rejected'] ?></td> 40 <td><?php echo $issue['count_all'] ?></td> 61 <?php foreach ($tpl->get('issues') as $issue) [all...] |
/plugin/issuelinks/ |
H A D | syntax.php | 70 if (null === $issue) { 78 $issue->getServiceName(), 79 $issue->getProject(), 80 $issue->getKey(), 81 $issue->isMergeRequest() 86 'service' => $issue->getServiceName(), 87 'project' => $issue->getProject(), 88 'issueId' => $issue->getKey(), 89 'isMergeRequest' => $issue->isMergeRequest(), 128 $issue->getFromDB(); [all …]
|
/plugin/issuelinks/helper/ |
H A D | db.php | 253 * @param Issue $issue 257 public function saveIssue(Issue $issue) argument 261 'project' => $issue->getProject(), 262 'id' => $issue->getKey(), 264 'summary' => $issue->getSummary(), 266 'type' => $issue->getType(), 267 'status' => $issue->getStatus(), 268 'parent' => $issue->getParent(), 272 'duedate' => $issue->getDuedate(), 300 'id' => $issue->getKey(), [all …]
|
H A D | data.php | 216 $issue = Issue::getInstance($pmServiceName, $project, $issueid, $isMergeRequest); 217 if (!$issue->isValid()) { 219 $issue->getFromService(); 220 $issue->saveToDB(); 225 return $issue; 234 $issue = Issue::getInstance( 240 $issue->getFromDB(); 241 $issueData['summary'] = $issue->getSummary(); 242 $issueData['status'] = $issue->getStatus(); 243 $issueData['url'] = $issue->getIssueURL();
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Contactcenterinsights/ |
H A D | GoogleCloudContactcenterinsightsV1IssueAssignment.php | 29 public $issue; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1IssueAssignment 49 public function setIssue($issue) argument 51 $this->issue = $issue; 58 return $this->issue;
|
H A D | GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStatsIssueStats.php | 29 public $issue; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStatsIssueStats 52 public function setIssue($issue) argument 54 $this->issue = $issue; 61 return $this->issue;
|
H A D | GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats.php | 29 public $issue; variable in Google\\Service\\Contactcenterinsights\\GoogleCloudContactcenterinsightsV1IssueModelLabelStatsIssueStats 52 public function setIssue($issue) argument 54 $this->issue = $issue; 61 return $this->issue;
|
/plugin/redissue/ |
H A D | syntax.php | 163 $issues = $redmine->client->issue->all([ 232 $issue = $redmine->getIssue($data['id']); 235 if($issue == 'Syntax error') { 238 } elseif (isset($issue['issue'])) { 240 $project = $issue['issue']['project']; 242 $tracker = $issue['issue']['tracker']; 244 $author = $issue['issue']['author']; 246 $assigned = $issue['issue']['assigned_to']; 248 $subject = $issue['issue']['subject']; 254 $data['text'] = $issue['issue']['subject']; [all …]
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Books/ |
H A D | VolumeseriesinfoVolumeSeries.php | 41 public function setIssue($issue) argument 43 $this->issue = $issue; 50 return $this->issue;
|
/plugin/youtracklinks/ |
H A D | helper.php | 119 function generateLinkForIssue($issue) { argument 121 if ($issue == null || $issue['0'] == "You are not logged in.") { 130 $id = $issue->attributes()->id; 131 foreach($issue as $key => $field) { 142 foreach($issue as $key => $field) {
|
H A D | syntax.php | 88 $issue = $my->fetchYouTrackIssue($match); 89 if (!$issue || $issue == 'Issue not found.') 91 $link = $my->generateLinkForIssue($issue);
|
/plugin/redissue/redmine/ |
H A D | redmine.php | 30 return $this->client->issue->show($issue_id); 53 function getDatesTimesIssue($issue){ argument 54 $created = $issue['issue']['created_on']; 55 $updated = $issue['issue']['updated_on']; 56 $closed = $issue['issue']['closed_on'];
|
/plugin/issuelinks/action/ |
H A D | ajax.php | 297 $issue = Issue::getInstance($pmServiceName, $projectKey, $issueId, $isMergeRequest); 298 $issue->getFromDB(); 302 if (!$issue->isValid()) { 306 return [200, $issue->buildTooltipHTML()]; 312 $issue = Issue::getInstance($pmServiceName, $projectKey, $issueId, $isMergeRequest); 313 $issue->getFromDB(); 317 if (!$issue->isValid()) { 321 return [200, $issue->getAdditionalDataHTML()];
|
/plugin/ghissues/helper/ |
H A D | apiCacheInterface.php | 192 foreach($response as $issueIdx => $issue) { 195 …$outputXML .= $this->external_link($issue->html_url, htmlentities('#'.$issue->number.': '.$issue->… 197 foreach($issue->labels as $label) { 205 $outputXML .= sprintf($this->getLang('reporter'),htmlentities($issue->user->login)); 206 $outputXML .= htmlentities(strftime($conf['dformat'],strtotime($issue->created_at)));
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudDataplex/ |
H A D | GoogleCloudDataplexV1Action.php | 52 public $issue; variable in Google\\Service\\CloudDataplex\\GoogleCloudDataplexV1Action 201 public function setIssue($issue) argument 203 $this->issue = $issue; 210 return $this->issue;
|
/plugin/issuelinks/classes/ |
H A D | Issue.php | 89 if (empty($issue)) { 92 $this->summary = $issue['summary'] ?: ''; 93 $this->status = $issue['status']; 94 $this->type = $issue['type']; 95 $this->description = $issue['description']; 96 $this->setComponents($issue['components']); 97 $this->setLabels($issue['labels']); 98 $this->priority = $issue['priority']; 99 $this->duedate = $issue['duedate']; 100 $this->setVersions($issue['versions']); [all …]
|