Component org.nuxeo.ecm.virtualnavigation.tagsContrib
In bundle org.nuxeo.ecm.platform.tag.web
Requirements
Resolution Order
648
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
- org.nuxeo.ecm.virtualnavigation.tagsContrib--navigationTree
- org.nuxeo.ecm.virtualnavigation.tagsContrib--actions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.virtualnavigation.tagsContrib">
<require>org.nuxeo.ecm.platform.actions</require>
<extension target="org.nuxeo.ecm.webapp.tree.nav.NavTreeService" point="navigationTree">
<navTree treeId="TAG_CLOUD" treeLabel="label.byTagNavigation" xhtmlview="/incl/tag_cloud.xhtml"/>
</extension>
<extension target="org.nuxeo.ecm.platform.actions.ActionService" point="actions">
<action id="navtree_TAG_CLOUD" order="100" label="label.byTagNavigation" icon="/img/TAG_CLOUD.png"
type="rest_document_link">
<category>TREE_EXPLORER</category>
<properties>
<property name="ajaxSupport">true</property>
<property name="link">/incl/tag_cloud.xhtml</property>
</properties>
<filter id="browseByTagsFilter">
<rule grant="true">
<condition>#{tagActions.canBrowseByTags()}</condition>
</rule>
</filter>
</action>
</extension>
</component>