I need to develop a cronjob

Author Message

Jorge estévez

Thursday 25 February 2010 5:22:32 pm

Hello

 

I need to develop a cronjob that will go through all certain nodes and get all attributes of its class, what should I use to “get” the attributes so I can display them? Is there a similar cronjob that get’s attributes starting from a tree node?

 

Thanks

Diseño Web Cuba
Web Design Cuba
www.elfosdesign.com

Gaetano Giunta

Friday 26 February 2010 6:54:38 am

To walk the content tree, look at eg. how the ezfind indexation cronjob does it.

To fetch the attributes of a node or object, here's eZP little dirty trick: the "attribute" function.

Every object you read in the eZ manual at http://ez.no/doc/ez_publish/technical_manual/4_x/reference/objects is in php terms a subclass of ezpersistentobject.

And all the object attributes available in templates via "." and documented in the docs are available in php code via the "attribute" function.

So if $node is an ezcontentobjecttreenode, $node->attribute( 'data_map' ) will return an array with all the attributes of the encapsulated object. $node->attribute( 'children' ) will return an array with all the children nodes and so on...

Principal Consultant International Business
Member of the Community Project Board

Jorge estévez

Monday 01 March 2010 6:55:56 am

Hello,

Thanks... I have walked the tree, I now have access to all nodes (quite fast)... I am triying to access each attribute (I need to display "attribute name" and its "valus", but even with the help of friends this weekend we did not manage to do nothing:

Can you give me a hand?

This is the code:

<code>

//this works fine, it displays all the nodes

$cli->output( 'node found: "' . $node->attribute( 'name' ) . '" (' . $node->attribute( 'node_id' ) . ')' );

$mynodeArray = $node->attribute( 'data_map' );
$mycounter = -1;

////// I need to go trough all the attributes and display them (name and value)


foreach ( $mynodeArray as $myattr )
{
$mycounter += 1;

//var_dump( $myattr );

}

</code>

Please look at the commented lines in the code.

Another question: an you point out what to use to save the values to a file?

Thanks

Diseño Web Cuba
Web Design Cuba
www.elfosdesign.com

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 18:38:24
Script start
Timing: Jan 18 2025 18:38:24
Module start 'layout'
Timing: Jan 18 2025 18:38:24
Module start 'content'
Timing: Jan 18 2025 18:38:24
Module end 'content'
Timing: Jan 18 2025 18:38:24
Script end

Main resources:

Total runtime0.9184 sec
Peak memory usage4,096.0000 KB
Database Queries57

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0185 587.9141152.6250
Module start 'layout' 0.01850.0033 740.539139.4453
Module start 'content' 0.02190.8941 779.9844536.4375
Module end 'content' 0.91590.0024 1,316.421912.1641
Script end 0.9183  1,328.5859 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.01441.5705160.0009
Check MTime0.01161.2637160.0007
Mysql Total
Database connection0.00110.120210.0011
Mysqli_queries0.846292.1412570.0148
Looping result0.00060.0646550.0000
Template Total0.863694.020.4318
Template load0.00250.272920.0013
Template processing0.861093.758020.4305
Template load and register function0.00020.026810.0002
states
state_id_array0.00210.223910.0021
state_identifier_array0.00170.181820.0008
Override
Cache load0.00210.2335410.0001
Sytem overhead
Fetch class attribute can translate value0.00080.082720.0004
Fetch class attribute name0.00170.182340.0004
XML
Image XML parsing0.00080.084020.0004
class_abstraction
Instantiating content class attribute0.00000.001140.0000
General
dbfile0.00090.0999160.0001
String conversion0.00000.001240.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
3content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
5content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
2content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 13
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs