Adding External Links
The external links configuration file is in JSON format and is located at: <WT_HOME>/codebase.war/delivery/app/externalLinks/externalLink_en_US.json
To add a new external link, the following section can be copy/pasted inside the external links items:
{
"label": "",
"url": "",
"comments": "",
"createdBy": "",
"creationDate": ""
}
Required attributes:
label : Text label of the external link
url: URL of the external link
Optional attributes:
comments : Additional comments about the external link
createdBy : Name of the user who created the external link
creationDate : Creation date of the external link
For example:
{
"externalLinks": {
"items": {
{
"label":"PTC Product & Service Advantage",
"url": "http://www.ptc.com/",
"comments": "This is an example external link",
"createdBy": "",
"creationDate": ""
}
}
]
}
* 
Items are comma separated and all values and keys are quoted.
For example:
{
"externalLinks": {
"items": {
{
"label":"PTC Product & Service Advantage",
"url": "http://www.ptc.com/",
"comments": "This is an example external link",
"createdBy": "",
"creationDate": ""
}
{
"label":"PTC Servigistics",
"url": "http://www.ptc.com/service-lifecycle-management/servigistics",
"comments": "This is an example external link",
"createdBy": "",
"creationDate": ""
}
}
]
}
The section is only available on web mode. It is displayed in the home page as follow:
Was this helpful?