Every page must have a <sections> element. The <sections> element has one or more child <section> elements. Each section contains a description visible to the user and an ordered list of components that are defined in the <components> element.
To configure the sections element
<section id="section1" permission="advancedvpc">
The "section1" section is viewable only by users with the "advancedvpc" permission.
<page> <sections> <section id="s1" permission="advancedvpc"> <description>Environment Options</description> <component id="starttime" order="1" /> <component id="duration" order="2" /> <component id="securityZone" order="3" permission="advanced-user-2" /> </section> </sections> </page>
<component id="class" required="false"> <description>Class</description> <help-text>This is the help text</help-text> <text-value /> </component>
HTML tags are accepted within the help-text tag, but must be wrapped in a CDATA tag, as in the example below:
<component id="class" required="false"> <description>Class</description> <help-text> <![CDATA[Desired <a href="http://www.desired-web-page.com">Web Page</a>]]> </help-text> <text-value /> </component>
Related topics