コード例 #1
0
ファイル: dummy.py プロジェクト: goschtl/zope
 def manage_afterAdd( self, item, container ):
     self.after_add_called = 1
     if self.catalog:
         PortalContent.manage_afterAdd( self, item, container )
コード例 #2
0
ファイル: Image.py プロジェクト: bendavis78/zope
 def manage_afterAdd(self, item, container):
     """Both of my parents have an afterAdd method"""
     OFS.Image.Image.manage_afterAdd(self, item, container)
     PortalContent.manage_afterAdd(self, item, container)
コード例 #3
0
ファイル: File.py プロジェクト: goschtl/zope
 def manage_afterAdd(self, item, container):
     """Both of my parents have an afterAdd method"""
     OFS.Image.File.manage_afterAdd(self, item, container)
     PortalContent.manage_afterAdd(self, item, container)
コード例 #4
0
ファイル: dummy.py プロジェクト: bendavis78/zope
 def manage_afterAdd( self, item, container ):
     self.after_add_called = 1
     if self.catalog:
         PortalContent.manage_afterAdd( self, item, container )
コード例 #5
0
 def manage_afterAdd(self, item, container):
      """ Add self to the workflow and catalog. """
      PortalFolder.manage_afterAdd(self, item, container)
      PortalContent.manage_afterAdd(self, item, container)
コード例 #6
0
 def manage_afterAdd(self, item, container):
     " Add self to the workflow and catalog. "
     # Recurse in the children (ObjectManager)
     PortalFolder.manage_afterAdd(self, item, container)
     # Add self to workflow and catalog
     PortalContent.manage_afterAdd(self, item, container)