Variables in 'parameter_list'

Author Message

Nicolas Gommenginger

Thursday 10 December 2009 1:35:43 am

Hi,

I'm developing a new workflow event type on the event after publish, and I would like to know if the new object has been added thanks to the front-end interface or thanks to the back-end interface. I think there is maybe one variable in the "parameter_list" from "$process->attribute( 'parameter_list' )" that can help me. I know that there is the object_id and the user_id but I don't know what are the other variables.

Does someone know where can I find a list of all available variables from "parameter_list" ? Or what kind of solutions do I have ?

Thanks.

Nico

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

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 18 2025 05:12:17
Script start
Timing: Jan 18 2025 05:12:17
Module start 'layout'
Timing: Jan 18 2025 05:12:17
Module start 'content'
Timing: Jan 18 2025 05:12:18
Module end 'content'
Timing: Jan 18 2025 05:12:18
Script end

Main resources:

Total runtime0.7895 sec
Peak memory usage4,096.0000 KB
Database Queries62

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0063 587.9141152.6250
Module start 'layout' 0.00640.0036 740.539139.4453
Module start 'content' 0.01000.7780 779.9844553.3359
Module end 'content' 0.78790.0015 1,333.320312.1641
Script end 0.7894  1,345.4844 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00370.4636160.0002
Check MTime0.00140.1730160.0001
Mysql Total
Database connection0.00080.100610.0008
Mysqli_queries0.728492.2640620.0117
Looping result0.00060.0736600.0000
Template Total0.758396.120.3791
Template load0.00220.276320.0011
Template processing0.756195.773020.3780
Template load and register function0.00020.026810.0002
states
state_id_array0.00090.120310.0009
state_identifier_array0.00080.100820.0004
Override
Cache load0.00190.2346290.0001
Sytem overhead
Fetch class attribute can translate value0.00260.332220.0013
Fetch class attribute name0.00210.266950.0004
XML
Image XML parsing0.00070.089820.0004
class_abstraction
Instantiating content class attribute0.00000.001860.0000
General
dbfile0.00080.1008160.0000
String conversion0.00000.001440.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
4content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
7content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
2content/datatype/view/ezxmltags/link.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/link.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1content/datatype/view/ezxmltags/emphasize.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/emphasize.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 20
 Number of unique templates used: 8

Time used to render debug report: 0.0001 secs