Data tags provide content for display tags, which format and display the content. Data tags do not actually display anything, all they do is to set data on the tag scopes, such as the session or the portlet request scope. The data stored by these tags on the tag scopes are used by display tags. For example, the ptnavtags:ptddmenutab tag generates HTML for a DHTML dropdown menu. It does not display any content by default. To populate the menu with entries, it requires a reference to one or more data tags. The way to specify what data tag to use in a display tag is to reference the ID attribute that all data tags should define. A display tag defines an attribute to specify the data tag ID to use.
There are several types of data tags and display tags defined since not all data tags or display tags are compatible with each other. The ALI framework tag libraries (core, logic, standard, ui, data and navtags) provide three types of data tags.
Two of these types are intrinsic to the tag framework, the string data and the IDataObject (DO) data. These two types are used by the tag framework to enable text replacement operations with the $ operator.
Tag Summary |
addcommunityportletsdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Add Portlets on Communities Editor (Editor to add and remove portlets in a Community. The URL is only returned if a user has access to edit the current Community). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
addmypageportletsdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Add Portlets on MyPages Editor (Editor to add and remove portlets from a user's MyPage). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
administrationdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to the Administrative Portal (The URL is only returned if a user has sufficient access to the Administrative Portal). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
advancedsearchdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to the Advanced Search Page. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
directorybrowsedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Knowledge Directory Folder in Browse Mode (Goes to the root folder if no folder ID is specified). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
communityactionsdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's Community related Actions (For example 'Join Communities Editor' or 'Edit this Community'. Certain links are only included if a user has sufficient access). An optional 'includeoneclick' tag causes the inclusion of a link for 'one-click' page creation, using the 'inherittemplate' and 'pagetemplate' flags to override the defaults of 'true' and 'blank page template'. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
communitykddata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Community Knowledge Directory (Only displayed when currently in a Community with Community Knowledge Directory enabled) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component when on a Community Knowledge Directory page. |
mycommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's My Communities (Communities a user has joined or is a mandatory member of) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
communitypagesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to Community Pages for a specified Community (Only URLs to Community Pages a user has access to will be included) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community Page if currently on that Community Page. |
createnewcommpagedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Create New Community Page Editor (Page in the Community Editor to create new Community Pages. The URL is only returned for users who has access to create new Community pages). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
createcommpageoneclickdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Create New Community Page with one click, using (and inheriting) the default blank template. Template and page inheritance rule can be overriden with the optional pagetemplate and inherittemplate attributes. The URL is only returned for users who has access to create new Community pages. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
createnewmypagedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Create New MyPage Editor (The URL is not returned if the maximum number of MyPages has been created). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
createnewmypageoneclickdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Create New MyPage with one click using default layout (The URL is not returned if the maximum number of MyPages has been created). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
currcommunitydata | Returns information about the current community, including a URL to the home page and optionally the Community Name and ID, and the Community Page Name and ID. Returns nothing if user is not on a community page. |
currcommunitypagesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to current Community Pages (Community Pages a user is currently in. Only URLs to Community Pages a user has access to will be included) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community Page if currently on that Community Page. |
currpagedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL for the current Community Page data. Nothing is set if the current page is not a Community page. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
currparentcommunitydata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Parent Community of the current Community (The Community above the current Community in the administrative hierarchy. No URL is set if the user does not have access to the Parent Community). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
currprofiledata | Returns information about the current User Profile (on profile pages). Returns nothing if user is not on a profile page. Note this tag displays information about the user who's profile is being viewed; not the logged-in user. |
currrelatedcommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to Related Communities of the current Community (Related Communities in the Community a user is currently in. Only URLs to Communities a user has access to will be included) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
currsubcommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to Subcommunities of the current Community (Subcommunities of the Community a user is currently in. Only Communities a user has access to are included) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
deletemypagedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Delete My Page Action (Deletes the current My Page a user is on. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
editcommunitydata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to the Edit current Community Editor (Editor to edit different aspects of the Community a user is currently in. The URL is only returned if a user has access to edit the current Community). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
directoryeditdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Knowledge Directory Folder Edit Mode. Goes to the root folder if no folder ID is specified. This URL will not be returned if a user does not have access to edit the Knowledge Directory. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
editmypageactionsdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Edit My Page Editor (Editor to edit My Page name and layout). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
editmypageportletprefsdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Edit Portlet Preferences on MyPage Editor (Editor to edit all portlet preferences on the current page). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
federatedsearchdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to the Federated Search Page. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
genericurl | Sets PTURL DO data on the PORTLET REQUEST scope with URL with customizable Title, URL and Image .This URL contains the following standard URL components: title, url, uriand params . The img DO component will be set if an image is specified. |
helppagedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to open the Online Help Page. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). In standard display mode, the url component will just return #,since a popup is used. Use the jsaction to retrieve the javascriptcall. In Accessibility and low-bandwidth mode a regular URL is used |
joincommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Join Communities Editor (Editor to select what Communities to display on users's My Community list). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
joincurrcommunitydata | Sets PTURL DO data on the PORTLET REQUEST scope with Join Current Community Action URL (Clicking on the URL joins the current Community). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
loginlogoffdata | Sets PTURL DO data on the PORTLET REQUEST scope with Login/Logoff Action URL (Login link if the current user is not logged in or Logoff link if the current user is already signed in). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
mandtabcommsdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's Mandatory Communities (List of Communities a user cannot unsubscribe from). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
mandatorylinksdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to current user's Experience Definition Mandatory Links (Only URLs to objects a user has access are included) This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
mandatorylinknamedata | Sets String data on the PORTLET REQUEST scope with Subportal Mandatory Links Folder Name (The name of the group of mandatory links. Displayed as the menu tab title on dropdown menus). |
myaccountdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to user's My Account Page (Goes to the My Account page where users can change various portal settings such as locale and display options). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
myhomedata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to user's Home Page (Goes to a user's home page as specified on a Subportal). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
mypageactionsdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs of users's My Page Actions (My Page actions such as 'Create New MyPage' or 'Edit Page'. Some actions are only included when currently on a MyPage). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
mypagesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's My Pages. The 'currurl' DO data component is set on a MyPage URL if currently in that My Page This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
myprofiledata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to user's Profile Page (Goes to the User Profile page where users can view personal profile information). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
pagelink | This tag will display a link back to the current page or to the base URL of the current page (without the ?). The HTTP entry point portion of the link can be modified. This tag does not display the contents of the tag and should only be used as a singleton tag (i.e. <pt:ptdata.pagelink/>), rather than as a tag with both an open and close tag. |
parentcommunitydata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Parent Community of a specified Community (The Community above the specified Community in the administrative hierarchy. No URL is set if the user does not have access to the Parent Community). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
relatedcommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to users's Related Communities URLs of a specified Community (Communities in the same level of the administrative hierarchy. Only URLs to Communities a user has access to are included). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
rulesdebugdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Rules Debug Pop up Page where users can view the messages sent by the experience definition rules engine. This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
subcommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with List of URLs to the Subcommunities of the specified Community (Communities located below a Community in the Administrative hierarchy. Only Communities a user has access to are included). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case). The URL will also set the currpage DO data component on a Community URL if currently in that Community. |
unsubscribecommunitiesdata | Sets PTURL DO data on the PORTLET REQUEST scope with URL to Unsubscribe from Communities Editor (Editor where a user can remove Communities from their My Community list). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|
unsubscribecurrcommunitydata | Sets PTURL DO data on the PORTLET REQUEST scope with Unsubscribe Current Community Action URL (Clicking on the URL unsubscribes the current Community). This URL contains the following standard URL components: title, url, uri, img, imgheight, imgwidth and params . In addition, the name of each parameter in the query string of the URL in the link is also a valid component key. So param1 could be used as a key to retrieve the value of the query string parameter param1=value1 . For instance, if the url is http://...server.pt?open=518&objID=58411... you can get the objid data as a name/value pair stored under objid (all lower case).
|