@subscriptionLink([LABEL], [ATTRS])

Returns URL for the NST Pro subscription page.

The following parameters are recognized:

[LABEL]

The label for the link (if omitted it will default to "NST Pro Subscription").

[ATTRS]

Optional attributes (other than "class", "href", and "onmouseover") for the >a< entity.

This macro inserts a link into the page which the user can click on. The link will take them to the Internet based NST Pro Subscription page.

Example of using the macro:

@subscriptionLink("Subscribe to NST Pro")!

Assuming the com.ccg.macros.at.All class is within your CLASSPATH and the config/html.at macros file has been generated (Hint: run make atmacros in the wui directory), a developer should be able to run the above example by copy/pasting from below:

[root@probe root]# java com.ccg.macros.at.All <<EOF
@include("config/html.at",,"d")

@subscriptionLink("Subscribe to NST Pro")!

EOF

This macro is defined as:

<a@htmlAttr("class","NstSubscribe")@htmlAttr("href","@nstproUrl()")@htmlAttr("onmouseover","NstDom.showToolTip(this, event, 'NstSubscribe');")@param(1)>@fnb("@param(0)","NST Pro Subscription")</a>