Get the CmsObject

From OpenCms Wiki
(Difference between revisions)
Jump to: navigation, search
m (changed lang to xml)
m (changed lang to xml)
 
Line 3: Line 3:
 
===Getting the CmsObject in scriptlets===
 
===Getting the CmsObject in scriptlets===
  
<source lang="java">
+
<source lang="xml">
 
   <%@page import="org.opencms.file.CmsObject"%>
 
   <%@page import="org.opencms.file.CmsObject"%>
 
   <%@page import="org.opencms.jsp.CmsJspActionElement"%>
 
   <%@page import="org.opencms.jsp.CmsJspActionElement"%>

Latest revision as of 11:44, 24 August 2012

The CmsObject gives you access to many of OpenCMS' features.

Getting the CmsObject in scriptlets

   <%@page import="org.opencms.file.CmsObject"%>
   <%@page import="org.opencms.jsp.CmsJspActionElement"%>
   <%
      CmsJspActionElement jsp = new CmsJspActionElement(pageContext, request, response);
      CmsObject cms = jsp.getCmsObject();
 
      ... do something useful
   %>

Getting the CmsObject using EL

   <%@taglib prefix="cms" uri="http://www.opencms.org/taglib/cms" %>
 
   <c:set var="co" value="${cms:getCmsObject(pageContext)}" />
   <%-- ... do something useful --%>
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox