Fetch objects having children with a particular attribute

Author Message

Andrey Astakhov

Monday 23 October 2006 12:14:28 pm

Could you give me an idea on how to fetch in a template a list of objects having children with a particular attribute matching given criteria?

I have got

Parent object 1
---- Child Object 1 (attribute1 = 'a')
---- Child Object 2 (attribute1 = 'c')

Parent object 2
---- Child Object 3 (attribute1 = 'b')
---- Child Object 4 (attribute1 = 'c')

Parent object 3
---- Child Object 4 (attribute1 = 'b')
---- Child Object 5 (attribute1 = 'a')

I need a list of parent objects that have attribute1 = 'a' in child objects.

How can i fetch this objects in my template? Thank you in advance.

Łukasz Serwatka

Tuesday 24 October 2006 12:14:28 am

Hi,

Use tree fetch with attribute_filter ( http://ez.no/doc/ez_publish/technical_manual/3_8/reference/modules/content/fetch_functions/tree ), then in loop display parent names.

{def $nodes=fetch( content, tree, ... )}

{foreach $nodes as $node }
    {$node.parent.name}
{/foreach}

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Andrey Astakhov

Tuesday 24 October 2006 4:57:09 am

Thank you, Lukasz.
From my understanding in this case tree fetch will return child objects matching given criteria but not parent objects. Is it correct?

Łukasz Serwatka

Tuesday 24 October 2006 5:10:00 am

Yes, that is correct. You can also try with extended attribute filtering but that is more complex way. There is an example in doc.

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Andrey Astakhov

Tuesday 24 October 2006 5:24:42 am

Extended attribute filter is still difficult for me. I'm trying to do it on template level.

Ok, if it's correct then it is not what i need.

How do you think which approach is better:

1) Get all child objects ($childs) filtered by a criteria attribute1 = 'a' . Then get a list of parent objects for this child objects $childs. Is it possible?

or

2) Get all parent objects ($parents). Then iterate through $parents getting childs for each item and filtering by criteria attribute1 = 'a'.

?

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 21 2025 20:15:24
Script start
Timing: Jan 21 2025 20:15:24
Module start 'layout'
Timing: Jan 21 2025 20:15:24
Module start 'content'
Timing: Jan 21 2025 20:15:25
Module end 'content'
Timing: Jan 21 2025 20:15:25
Script end

Main resources:

Total runtime1.1622 sec
Peak memory usage4,096.0000 KB
Database Queries63

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0068 588.1719151.2422
Module start 'layout' 0.00680.0028 739.414136.7109
Module start 'content' 0.00951.1518 776.1250585.9609
Module end 'content' 1.16130.0009 1,362.085911.7813
Script end 1.1622  1,373.8672 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00330.2815160.0002
Check MTime0.00130.1152160.0001
Mysql Total
Database connection0.00130.116210.0013
Mysqli_queries1.111095.5948630.0176
Looping result0.00060.0542610.0000
Template Total1.121796.520.5609
Template load0.00200.176320.0010
Template processing1.119796.340020.5598
Template load and register function0.00010.011110.0001
states
state_id_array0.00200.172510.0020
state_identifier_array0.00280.237020.0014
Override
Cache load0.00170.1470350.0000
Sytem overhead
Fetch class attribute can translate value0.00060.048520.0003
Fetch class attribute name0.00080.070560.0001
XML
Image XML parsing0.00070.058720.0003
class_abstraction
Instantiating content class attribute0.00000.001270.0000
General
dbfile0.00160.1382180.0001
String conversion0.00000.000540.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
5content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
8content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
4content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
2content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 22
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs