Monday 02 June 2008 3:13:05 am
Hey all, I'm currently trying to create my own workflow event. I'd like to pass parameters from my template to my workflow process via the before publish trigger, without altering the just edited object. Does anyone know how to do this? I've been searching a bit myself, and stumbled upon the following function in /kernel/classes/ezworkflowevent.php:
/*!
Executes the custom HTTP action
*/
function customHTTPAction( &$http, $action )
{
$eventType =& $this->eventType();
$eventType->customWorkflowEventHTTPAction( $http, $action, $this );
}
Can this function be used for this purpose? Thanks as always!
|