Documentation for ccm-cms-types-address.ftl
git-svn-id: https://svn.libreccm.org/ccm/trunk@6292 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
58efb03c7f
commit
571aa14d4f
|
|
@ -5,26 +5,73 @@
|
|||
"ui": "http://www.arsdigita.com/ui/1.0"}
|
||||
>
|
||||
|
||||
<#--filedoc
|
||||
Functions for processing the special properties of content items of the
|
||||
type address.
|
||||
-->
|
||||
|
||||
<#--doc
|
||||
Gets the value of the `address` text property of the provided address item.
|
||||
|
||||
@param item The address item to use.
|
||||
|
||||
@return The value of the `address` property of the provided address item.
|
||||
-->
|
||||
<#function getAddressText item>
|
||||
<#return item["./address"]>
|
||||
</#function>
|
||||
|
||||
<#--doc
|
||||
Gets the value of the `city` property of the provided address item.
|
||||
|
||||
@param item The address item to use.
|
||||
|
||||
@return The value of the `city` property of the provided address item.
|
||||
-->
|
||||
<#function getCity item>
|
||||
<#return item["./city"]>
|
||||
</#function>
|
||||
|
||||
<#--doc
|
||||
Gets the value of the `postalCode` property of the provided address item.
|
||||
|
||||
@param item The address item to use.
|
||||
|
||||
@return The value of the `postalCode` property of the provided address item.
|
||||
-->
|
||||
<#function getPostalCode item>
|
||||
<#return item["./postalCode"]>
|
||||
</#function>
|
||||
|
||||
<#--doc
|
||||
Gets the value of the `state` property of the provided address item.
|
||||
|
||||
@param item The address item to use.
|
||||
|
||||
@return The value of the `state` property of the provided address item.
|
||||
-->
|
||||
<#function getState item>
|
||||
<#return item["./state"]>
|
||||
</#function>
|
||||
|
||||
<#--doc
|
||||
Gets the value of the `country` property of the provided address item.
|
||||
|
||||
@param item The address item to use.
|
||||
|
||||
@return The value of the `country` property of the provided address item.
|
||||
-->
|
||||
<#function getCountry item>
|
||||
<#return item["./country"]>
|
||||
</#function>
|
||||
|
||||
<#--doc
|
||||
Gets the value of the `isoCountryCode` property of the provided address item.
|
||||
|
||||
@param item The address item to use.
|
||||
|
||||
@return The value of the `isoCountryCode` property of the provided address item.
|
||||
-->
|
||||
<#function getIsoCountryCode item>
|
||||
<#return item["./isoCountryCode"]>
|
||||
</#function>
|
||||
Loading…
Reference in New Issue