Diferencia entre revisiones de «Custom Fields en Liferay»
De Dos Ideas.
(→Obteniendo un custom field de sitio desde un template) |
|||
(No se muestra una edición intermedia del mismo usuario) | |||
Línea 22: | Línea 22: | ||
<div> | <div> | ||
Texto: $text.data -- Fecha: $fecha | Texto: $text.data -- Fecha: $fecha | ||
+ | </div> | ||
+ | </code> | ||
+ | |||
+ | === Obteniendo un custom field de sitio desde un WebContent=== | ||
+ | <code> | ||
+ | ## GroupId. | ||
+ | #set($groupId = $getterUtil.getLong($request.get("theme-display").get("scope-group-id"))) | ||
+ | |||
+ | ## companyId. | ||
+ | #set ($companyId = $getterUtil.getLong($request.theme-display.company-id)) | ||
+ | |||
+ | ## ExpandoService, retorna el valor del custom field --EsIntranet-- del --sitio--. | ||
+ | #set($esIntranet = $expandoValueLocalService.getData($companyId, "com.liferay.portal.model.Group", "CUSTOM_FIELDS", "EsIntranet",$groupId)) | ||
+ | |||
+ | <div> | ||
+ | Es Intranet: $esIntranet | ||
</div> | </div> | ||
</code> | </code> |
Revisión actual del 18:15 15 abr 2014
Esta utilidad permite definir variables propias dentro de determinados recursos, por ejemplo sitio, pagina, usuario, etc. Estas variables se exponen mediante Liferay’s ExpandoService.
Web Content
En este ejemplo se muestra como acceder, mediante Velocity, al Custom Field --fecha-- definido dentro del recurso Web Content.
- Servicio para buscar los artículos publicados.
- set ($journalArticleLocalService = $serviceLocator.findService('com.liferay.portlet.journal.service.JournalArticleLocalService'))
- GroupId.
- set($groupId = $getterUtil.getLong($request.get("theme-display").get("scope-group-id")))
- Retorna el articulo actual.
- set ($currentArticle = $journalArticleLocalService.getArticle($getterUtil.getLong($groupId), $reserved-article-id.data, $getterUtil.getDouble($reserved-article-version.data)))
- companyId.
- set ($companyId = $getterUtil.getLong($request.theme-display.company-id))
- ExpandoService, retorna el valor del custom field --fecha-- del --currentArticle--.
- set($fecha = $expandoValueLocalService.getData($companyId, "com.liferay.portlet.journal.model.JournalArticle", "CUSTOM_FIELDS", "fecha", $currentArticle.id))
Texto: $text.data -- Fecha: $fecha
Obteniendo un custom field de sitio desde un WebContent
- GroupId.
- set($groupId = $getterUtil.getLong($request.get("theme-display").get("scope-group-id")))
- companyId.
- set ($companyId = $getterUtil.getLong($request.theme-display.company-id))
- ExpandoService, retorna el valor del custom field --EsIntranet-- del --sitio--.
- set($esIntranet = $expandoValueLocalService.getData($companyId, "com.liferay.portal.model.Group", "CUSTOM_FIELDS", "EsIntranet",$groupId))
Es Intranet: $esIntranet