Read a property of an arbitrary CmsResource

From OpenCms Wiki
Revision as of 18:06, 4 July 2011 by Ben (Talk | contribs)
Jump to: navigation, search

With scriptlets, you can read the properties of any opencms resource.

   <%@page import="org.opencms.file.CmsProperty"%>
   <%
      CmsObject cms;
 
      // .. get the cms object
 
      boolean search = false;
      CmsProperty prop = cms.readPropertyObject("/sites/mysite/my_path/file.ext", "prop_name", search);
 
      String propValue = (prop != null) ? prop.getValue() : null;
   %>
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox