Wednesday 03 December 2008 3:03:23 am
Hi,
i solved the Problem by googling and anaylzing the Kernel Workflow Events. I figured out that in 3.7 addon settings doesn't and with php for ex. workow.ini.append now it is site.ini.append.php And in older version 3.7 you use eZWorkflowEventType::registerType( EZ_WORKFLOW_TYPE_PAYMENTMETHODS_ID, "simplepaytype" ); in 4.x you use: eZWorkflowEventType::registerEventType( EZ_WORKFLOW_TYPE_PAYMENTMETHODS_ID, "simplepaytype" ); I found more old behaviours
return EZ_WORKFLOW_TYPE_STATUS_FETCH_TEMPLATE_REPEAT;
in 4.x to return eZWorkflowType::STATUS_FETCH_TEMPLATE_REPEAT;
|