Thursday 10 December 2009 2:34:06 am
Hi Nicolas, I'm afraid that workflow event type parameters are not documented anywhere. The easiest way to find what parameters you have access to is to enable the DebugOutput and DebugRedirection and to put something like the following code to display the structure of the parameter_list in the debug output :
function execute( $process, $event )
{
$parameters = $process->attribute( 'parameter_list' );
eZDebug::writeDebug( $parameters, __METHOD__ );
// your code here
} This should display something like :
array
'object_id' => string '73' (length=2)
'version' => string '1' (length=1)
'workflow_id' => string '1' (length=1)
'trigger_name' => string 'post_publish' (length=12)
'module_name' => string 'content' (length=7)
'module_function' => string 'publish' (length=7)
'user_id' => string '14' (length=2) There's no trace of the siteaccess where the workflow event type is triggered. I think you can find what siteaccess is currently used by using the global variable $GLOBALS['eZCurrentAccess']['name'] Hope that helps. Cheers !
Damien
Planet eZ Publish.fr : http://www.planet-ezpublish.fr
Certification : http://auth.ez.no/certification/verify/372448
Publications about eZ Publish : http://pwet.fr/tags/keywords/weblog/ez_publish
|