It is a matter of configuration so just xml. For how to package/write plugin, 
have a look at ian's book:
http://www.nuxeo.org/static/book-draft/index.html

If you have a look at: actions-contrib.xml in nuxeo-platform-webapp-core you 
will find:
    <action id="TAB_RIGHTS" link="/incl/tabs/document_rights.xhtml" order="50"
      label="action.view.rights" icon="/icons/file.gif">
      <category>TAB_MANAGE_sub_tab</category>
      <filter-id>rights</filter-id>
    </action>

and the definition of the filter as:
    <filter id="rights">
      <rule grant="true">
        <permission>WriteSecurity</permission>
        <facet>Folderish</facet>
      </rule>
    </filter>

What you want to do is disable this action and create a new one, exactly the 
same but with a modified filter that will not filter on the facet folderish.
--
Posted by "arussel" at Nuxeo Discussions <http://nuxeo.org/discussions>
View the complete thread: 
<http://www.nuxeo.org/discussions/thread.jspa?threadID=2527#6998>
_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm
To unsubscribe, go to http://lists.nuxeo.com/mailman/options/ecm

Reply via email to