Ejemplo n.º 1
0
 @SuppressWarnings("unchecked")
 protected List<Content> getList(Map<String, TemplateModel> params, Environment env)
     throws TemplateException {
   Integer[] ids = DirectiveUtils.getIntArray(PARAM_IDS, params);
   if (ids != null) {
     return contentMng.getListByIdsForTag(ids, getOrderBy(params));
   } else {
     return (List<Content>) super.getData(params, env);
   }
 }