Changeset 17906
- Timestamp:
- 10/03/08 18:42:21 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/MidCOM_2_8/midcom.core/constants.php
r17609 r17906 348 348 349 349 /** 350 * DBA object import. This includes parameters & attachments. 351 */ 352 define ('MIDCOM_OPERATION_DBA_IMPORT', 0x8); 353 354 /** 350 355 * All known DBA operations. 351 356 */ 352 define ('MIDCOM_OPERATION_DBA_ALL', 0x 7);357 define ('MIDCOM_OPERATION_DBA_ALL', 0xF); 353 358 354 359 /**#@-*/ branches/MidCOM_2_8/midcom.core/midcom/helper/_dbfactory.php
r16773 r17906 569 569 570 570 $acl_object->_on_imported(); 571 /* Do we need this ?? The action relevant handlers and watches are triggered in any case572 571 $_MIDCOM->componentloader->trigger_watches(MIDCOM_OPERATION_DBA_IMPORT, $object); 573 */574 572 debug_pop(); 575 573 return true; … … 629 627 // Trigger parent updated 630 628 midcom_baseclasses_core_dbobject::update_post_ops($acl_object); 629 // And also imported 630 $_MIDCOM->componentloader->trigger_watches(MIDCOM_OPERATION_DBA_IMPORT, $acl_object); 631 631 632 632 debug_pop();
