Difference between revisions of "CSData 1 0-getCustomMetadata"
From ADF Docs
Dbeckstrom (talk | contribs) (→Parameters) |
Dbeckstrom (talk | contribs) (→Usage:) |
||
Line 62: | Line 62: | ||
<cfscript> | <cfscript> | ||
pageMeta = application.ADF.CSData.getCustomMetadata(request.page.id); | pageMeta = application.ADF.CSData.getCustomMetadata(request.page.id); | ||
− | if ( StructKeyExists(pageMeta.custom, "Blogs2") AND (StructKeyExists(pageMeta.custom.Blogs2, "blogID")) and (LEN(pageMeta.custom.Blogs2.blogID))){ | + | if ( StructKeyExists(pageMeta.custom, "Blogs2") AND |
+ | (StructKeyExists(pageMeta.custom.Blogs2, "blogID")) and | ||
+ | (LEN(pageMeta.custom.Blogs2.blogID))){ | ||
blogID = pageMeta.custom.Blogs2.blogID; | blogID = pageMeta.custom.Blogs2.blogID; | ||
Revision as of 23:05, 26 March 2012
Attention: Do not change any text in the description, signature, and paramter sections.
Return to CSData_1_0
Description
Signature
public struct getCustomMetadata ( numeric pageID, numeric categoryID, numeric subsiteID, string inheritedTemplateList )
Parameters
Required | Name | Type | Description |
required | pageID | numeric | |
categoryID | numeric | ||
subsiteID | numeric | ||
optional | inheritedTemplateList | string | [Default: ] |
Usage:
Example 1: Get the blogID from the custom Metadata form bound to the current page:
<cfscript>
pageMeta = application.ADF.CSData.getCustomMetadata(request.page.id);
if ( StructKeyExists(pageMeta.custom, "Blogs2") AND
(StructKeyExists(pageMeta.custom.Blogs2, "blogID")) and
(LEN(pageMeta.custom.Blogs2.blogID))){
blogID = pageMeta.custom.Blogs2.blogID;
}
</cfscript>