Commit 845b717b authored by Jean-Paul Smets's avatar Jean-Paul Smets

Removed Factory Type Information

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10042 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent a2a59679
...@@ -64,48 +64,3 @@ class Project(Order): ...@@ -64,48 +64,3 @@ class Project(Order):
# Declarative Interface # Declarative Interface
__implements__ = ( ) __implements__ = ( )
# Factory Type Information
factory_type_information = \
{ 'id' : portal_type
, 'meta_type' : meta_type
, 'description' : 'Use Project to define projects in consulting firm'
, 'icon' : 'document_icon.gif'
, 'product' : 'ERP5'
, 'factory' : 'addProject'
, 'immediate_view' : 'project_view'
, 'allow_discussion' : 1
, 'allowed_content_types': ('Order Line',
)
, 'actions' :
( { 'id' : 'view'
, 'name' : 'View'
, 'action' : 'project_view'
, 'category' : 'object_view'
, 'permissions' : (
Permissions.View, )
}
, { 'id' : 'print'
, 'name' : 'Print'
, 'action' : 'project_print'
, 'category' : 'object_print'
, 'permissions' : (
Permissions.View, )
}
, { 'id' : 'metadata'
, 'name' : 'Metadata'
, 'action' : 'metadata_view'
, 'category' : 'object_view'
, 'permissions' : (
Permissions.ModifyPortalContent, )
}
, { 'id' : 'translate'
, 'name' : 'Translate'
, 'action' : 'translation_template'
, 'category' : 'object_action'
, 'permissions' : (
Permissions.View, )
}
)
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment