Share » Forums » Developer » Variables in 'parameter_list'

Variables in 'parameter_list'

Variables in 'parameter_list'

Thursday 10 December 2009 1:35:43 am - 3 replies

Author Message

Damien Pobel

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

Damien Pobel

Thursday 10 December 2009 2:52:07 am

You can also take a look at this fresh topic :)

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

Nicolas Gommenginger

Thursday 10 December 2009 4:47:55 am

Thanks a lot, the $GLOBALS['eZCurrentAccess']['name'] works perfectly.

Nico

You must be logged in to post messages in this topic!

36 542 Users on board!

Forums menu