Drawer Item
Version 15.1 by Guillaume Delhumeau on 2015/09/30
Contents
Add an item in the Drawer menu
Usage
The extension point adds the content inside the drawer menu, after the languages selection.
Definition
This Extension Point is contributed by this extension and was added in version 7.3M1 of that extension.
- Category
- Drawer
- Extension Id
- org.xwiki.plaftorm.drawer
- Content to be provided
The code to add in the extension point.
It should look like this:
{{velocity}}{{html clean="false"}} ## we need clean="false" because we want to display the raw content of #drawerItem()
#template('drawer_macros.vm')
#drawerItem('someURL', 'someIcon', 'some xml-escaped text', 'some HTML id')
#end
{{/html}}{{/velocity}}To add a submenu (like the languages menu):
{{velocity}}{{html clean="false"}} ## we need clean="false" because we want to display the raw content of #drawerItem()
#template('drawer_macros.vm')
#drawerTopItemStart('some icon', 'some xml-escaped title' , 'some HTML id')
#drawerItem('someURL', 'someIcon', 'some xml-escaped text', 'some HTML id')
#drawerItem('someURL', 'someIcon', 'some xml-escaped text', 'some HTML id')
#drawerItem('someURL', 'someIcon', 'some xml-escaped text', 'some HTML id')
#drawerTopItemStop()
#end
{{/html}}{{/velocity}}You can also add a separator:
{{velocity}}{{html clean="false"}} ## we need clean="false" because we want to display the raw content of #drawerItem()
#template('drawer_macros.vm')
#drawerSeparator()
#drawerItem('someURL', 'someIcon', 'some xml-escaped text', 'some HTML id')
#end
{{/html}}{{/velocity}}- Parameters to be provided
- order: the order in which the item will be displayed