[96] | 1 | ##parameters=REQUEST=None |
---|
| 2 | # $Id: create_course.py 892 2006-11-18 21:14:18Z henrik $ |
---|
| 3 | """ |
---|
[144] | 4 | Create a Course |
---|
[96] | 5 | |
---|
| 6 | """ |
---|
| 7 | type_name = 'Course' |
---|
| 8 | REQUEST.set('type_name',type_name) |
---|
| 9 | |
---|
| 10 | ti = context.portal_types[type_name] |
---|
| 11 | pr = context.portal_registration |
---|
| 12 | pm = context.portal_membership |
---|
| 13 | |
---|
| 14 | validate = REQUEST.has_key("cpsdocument_create_button") |
---|
| 15 | |
---|
| 16 | lt = context.portal_layouts |
---|
| 17 | |
---|
| 18 | res,psm,ds = lt.renderLayout(layout_id= 'course', |
---|
| 19 | schema_id = 'course', |
---|
| 20 | context=context, |
---|
| 21 | mapping=validate and REQUEST, |
---|
| 22 | ob={}, |
---|
| 23 | layout_mode='create', |
---|
| 24 | create_action = 'create_course', |
---|
| 25 | ) |
---|
[142] | 26 | if psm == 'invalid': |
---|
[96] | 27 | return context.common_edit_form(rendered = res, |
---|
| 28 | create = 1, |
---|
| 29 | type_name = type_name, |
---|
[892] | 30 | psm = 'Please correct your errors!', |
---|
[96] | 31 | ) |
---|
| 32 | elif psm == '': |
---|
| 33 | return context.common_edit_form(rendered = res, |
---|
| 34 | create = 1, |
---|
| 35 | type_name = type_name, |
---|
| 36 | psm = psm, |
---|
| 37 | ) |
---|
[892] | 38 | |
---|
[96] | 39 | elif psm == 'valid': |
---|
| 40 | oid = "%s" % ds.get('code').replace(' ','') |
---|
[892] | 41 | context.invokeFactory(type_name,oid) |
---|
[144] | 42 | object = getattr(context,oid) |
---|
[145] | 43 | ds.set('Title',ds.get('heading')) |
---|
[96] | 44 | object.getContent().edit(mapping=ds,proxy=object) |
---|
[103] | 45 | context.notifyCPSDocumentCreation(ob=object) |
---|
[892] | 46 | psm = 'new %s created!' % oid |
---|
| 47 | context_ti = context.portal_types[context.portal_type] |
---|
[96] | 48 | index = context_ti.getActionById('view','university_view') |
---|
| 49 | return getattr(context,index)(psm=psm) |
---|
| 50 | |
---|