source: products/vendor/Products.CacheSetup/current/Products/CacheSetup/profiles/default/types/CacheTool.xml @ 3296

Last change on this file since 3296 was 3296, checked in by fenix, 12 years ago

Load Products.CacheSetup?-1.2.1 into vendor/Products.CacheSetup?/current.

File size: 1.8 KB
Line 
1<?xml version="1.0"?>
2<object name="CacheTool" meta_type="Factory-based Type Information"
3   xmlns:i18n="http://xml.zope.org/namespaces/i18n">
4 <property name="title">Cache Configuration Tool</property>
5 <property name="description">
6      </property>
7 <property name="content_icon">cachesetup_tool_icon.gif</property>
8 <property name="content_meta_type">CacheTool</property>
9 <property name="product">CacheSetup</property>
10 <property name="factory">addCacheTool</property>
11 <property name="immediate_view">base_edit</property>
12 <property name="global_allow">False</property>
13 <property name="filter_content_types">True</property>
14 <property name="allowed_content_types">
15  <element value="CachePolicy"/>
16 </property>
17 <property name="allow_discussion">False</property>
18 <alias from="(Default)" to="cache_tool_config"/>
19 <alias from="edit" to="base_edit"/>
20 <alias from="view" to="cache_tool_config"/>
21 <action title="Cache Setup" action_id="view" category="object"
22    condition_expr="" url_expr="string:$object_url" visible="False">
23  <permission value="Manage portal"/>
24 </action>
25 <action title="Edit" action_id="edit" category="object"
26    condition_expr="not:object/@@plone_lock_info/is_locked_for_current_user"
27    url_expr="string:${object_url}/edit" visible="True">
28  <permission value="Modify portal content"/>
29 </action>
30 <action title="Properties" action_id="metadata" category="object"
31    condition_expr="" url_expr="string:${object_url}/properties"
32    visible="True">
33  <permission value="Modify portal content"/>
34 </action>
35 <action title="References" action_id="references" category="object"
36    condition_expr="object/archetype_tool/has_graphviz"
37    url_expr="string:${object_url}/reference_graph" visible="True">
38  <permission value="Modify portal content"/>
39  <permission value="Review portal content"/>
40 </action>
41</object>
Note: See TracBrowser for help on using the repository browser.