Info |
---|
|
This routine is available starting with SIL Engineā¢ 2.5.15 for Jira 5.x / 2.6.7 for Jira 6.
|
Table plus |
---|
applyColStyleToCell | true |
---|
heading | 0 |
---|
columnTypes | s,s,s,s |
---|
multiple | false |
---|
columnAttributes | style="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold, |
---|
enableSorting | false |
---|
|
Syntax | getWebLinkById(webLinkId) | Package | | Alias | | Pkg Usage | | |
Description
Excerpt |
---|
|
Retrieves information about a web link. |
Retrieves information about a web link.
Parameters
Table plus |
---|
applyColStyleToCell | true |
---|
columnTypes | s,s,s,s |
---|
heading | 0 |
---|
multiple | false |
---|
enableSorting | false |
---|
|
Parameter name | Type | Required | Description |
---|
webLinkId | String | Yes | Id of a web link. | |
Return
...
Type
string String []
Array containing information about a web link, in the following order:
Index in array | Information |
---|
0 | Link Title |
1 | URL |
2 | Summary |
3 | Relationship |
4 | Icon URL |
5 | Icon Title |
6 | Status Icon Title |
7 | Status Icon Link |
8 | Status Icon URL |
Example
Code Block |
---|
number [] ids = getWebLinksForIssue(key);
for(number wlid in ids){
string [] props = getWebLinkById(wlid);
if(props[0] == theOtherKey) {
deleteWebLinkById(wlid);
}
} |
...
Filter by label (Content by label) |
---|
showLabels | false |
---|
max | 25 |
---|
showSpace | false |
---|
cql | label = "jira_weblinklink_routine" and space = currentSpace ( ) |
---|
labels | jiraarray_weblink_routineroutines |
---|
|