Lines Matching full:issue
10 use dokuwiki\plugin\issuelinks\classes\Issue; alias
251 * Save an issue into the database
253 * @param Issue $issue
257 public function saveIssue(Issue $issue) argument
260 'service' => $issue->getServiceName(),
261 'project' => $issue->getProject(),
262 'id' => $issue->getKey(),
263 'is_mergerequest' => $issue->isMergeRequest() ? '1' : '0',
264 'summary' => $issue->getSummary(),
265 'description' => $issue->getDescription(),
266 'type' => $issue->getType(),
267 'status' => $issue->getStatus(),
268 'parent' => $issue->getParent(),
269 'components' => implode(',', $issue->getComponents()),
270 'labels' => implode(',', $issue->getLabels()),
271 'priority' => $issue->getPriority(),
272 'duedate' => $issue->getDuedate(),
273 'versions' => implode(',', $issue->getVersions()),
274 'updated' => $issue->getUpdated(),
280 * Query the database for the issue corresponding to the given project and issueId
284 * @param int $issueId The id of an issue e.g. 42
295 public function saveIssueIssues(Issue $issue, array $issues) argument
298 'service' => $issue->getServiceName(),
299 'project' => $issue->getProject(),
300 'id' => $issue->getKey(),
301 'is_mergerequest' => $issue->isMergeRequest() ? 1 : 0,
305 'service' => $issue->getServiceName(),
306 'project' => $issue->getProject(),
307 'id' => $issue->getKey(),
308 'is_mergerequest' => $issue->isMergeRequest() ? 1 : 0,
332 * Query the database for pages with link-syntax to the given issue
336 * @param int $issue_id The ID of the issue, e.g. 42
358 * @param int $issue_id The id of the issue, e.g. 42
388 * Save the connection between a Jira issue and a revision of a page.
462 * Delete ALL entries from the database that correspond to the given page, issue and type.
467 * @param int $issueId the id of the issue, e.g. 42