Last change
on this file since 401 was
337,
checked in by joachim, 18 years ago
|
removed fields department, + faculty from certificate layout.
disabled table-header.
|
File size:
1.1 KB
|
Line | |
---|
1 | ## Script (Python) "folder_delete"
|
---|
2 | ##bind container=container
|
---|
3 | ##bind context=context
|
---|
4 | ##bind namespace=
|
---|
5 | ##bind script=script
|
---|
6 | ##bind subpath=traverse_subpath
|
---|
7 | ##parameters=ids=[], REQUEST=None
|
---|
8 | ##title=
|
---|
9 | ##
|
---|
10 | # $Id: folder_delete.py 30246 2005-12-02 20:10:18Z fguillaume $
|
---|
11 | """
|
---|
12 | FIXME: add docstring.
|
---|
13 | """
|
---|
14 |
|
---|
15 | from Products.CMFCore.utils import getToolByName
|
---|
16 |
|
---|
17 | ti = getToolByName(context, 'portal_types').getTypeInfo(context.portal_type)
|
---|
18 | meth_id = ti.queryMethodID('view', 'folder_contents')
|
---|
19 | ret_url = context.absolute_url() + '/' + meth_id
|
---|
20 |
|
---|
21 | if ids:
|
---|
22 | for id in ids:
|
---|
23 | # XXX has to be called from here since the workflow doesn't handle the
|
---|
24 | # deletion yet
|
---|
25 | ob = getattr(context, id)
|
---|
26 | from Products.CPSCore.EventServiceTool import getPublicEventService
|
---|
27 | evtool = getPublicEventService(context)
|
---|
28 | evtool.notifyEvent('workflow_delete', ob, {})
|
---|
29 | context.manage_delObjects(ids)
|
---|
30 | message = 'portal_status_message=psm_item(s)_deleted'
|
---|
31 | else:
|
---|
32 | message = 'portal_status_message=psm_select_at_least_one_document'
|
---|
33 |
|
---|
34 | if REQUEST is not None:
|
---|
35 | return REQUEST.RESPONSE.redirect(ret_url + '?' + message)
|
---|
Note: See
TracBrowser for help on using the repository browser.