예제 #1
0
 def __init__(self, *args, **kw):
     Folder.__init__(self, *args, **kw)
     Image.__init__(self, *args, **kw)
예제 #2
0
 def __init__(self, id=None):
     if id is None:
         id = self.__class__.id
     Folder.__init__(self, id)
예제 #3
0
파일: BaseTool.py 프로젝트: ccwalkerjm/erp5
 def __init__(self, id=None):
     if id is None:
       id = self.__class__.id
     Folder.__init__(self, id)
예제 #4
0
파일: Agent.py 프로젝트: Verde1705/erp5
 def __init__(self, *args, **kw):
   Folder.__init__(self, *args, **kw)
   Image.__init__(self, *args, **kw)
예제 #5
0
 def __init__(self, id, title='', container=None):
     # Initialize both SQLCatalog as well as Folder
     Catalog.__init__(self, id, title, container)
     Folder.__init__(self, id)