Filter with fetch, easy question?

Author Message

Clemens T

Thursday 29 September 2005 3:08:33 am

Heya all ez.no visitors! ;)

I'm trying to fetch all the content objects of type 'id_rfc' with parent_node '421' and with data_map.rfcstatus.value[0]=$myvalue;

The rfcstatus is a dropdown attribute.

Here's my template code.Note: this works, but this is unclean code, I want to filter on fetching! Anyone here?

		{let listRFC=fetch( 'content', 'list', hash( 	'parent_node_id', 421, 
										'class_filter_type', 'include',
										'class_filter_array', array( 'id_rfc' ) ) )} 

		{foreach $listRFC as $RFC}
		{section show=eq($RFC.data_map.rfcstatus.value[0],$filter)}
			{$RFC.name}<br/>
		{/section}
		{/foreach}

Thanks!
Clemens

Łukasz Serwatka

Thursday 29 September 2005 3:32:37 am

Try:

{def $listRFC=fetch( 'content', 'list', hash( 'parent_node_id', 421, 
					'class_filter_type', 'include',
					'class_filter_array', array( 'id_rfc' ),
					'attribute_filter', array( 'id_rfc/rfcstatus', '=', $filter ) ) )} 

{foreach $listRFC as $RFC}
	{$RFC.name}<br/>
{/foreach}

$filter must be integer 0,1,2,3, N depends how many options you have. Will not work with multiple selector.

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

Clemens T

Thursday 29 September 2005 4:34:34 am

Hey Luke, thanks for the reply...
unfortunately it doens't work.

The contents of $filter=1,2,3..etc

so that's wierd. Any thoughts?

Greetz,
Clemens

Łukasz Serwatka

Thursday 29 September 2005 4:41:47 am

Ah, missing one array

Try with:

'attribute_filter', array( array( 'id_rfc/rfcstatus', '=', $filter ) ) ) )

Selection always starts from 0.

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

Clemens T

Thursday 29 September 2005 5:36:15 am

Superb!
Thanks,
Keep up the great work with ezPublish.

Łukasz Serwatka

Thursday 29 September 2005 5:47:25 am

Perfect. You are welcome Clemens ;)

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

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 22:15:25
Script start
Timing: Jan 18 2025 22:15:25
Module start 'layout'
Timing: Jan 18 2025 22:15:25
Module start 'content'
Timing: Jan 18 2025 22:15:27
Module end 'content'
Timing: Jan 18 2025 22:15:27
Script end

Main resources:

Total runtime1.1800 sec
Peak memory usage4,096.0000 KB
Database Queries66

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0079 589.3438152.6250
Module start 'layout' 0.00790.0035 741.968839.4453
Module start 'content' 0.01141.1671 781.4141572.9922
Module end 'content' 1.17850.0014 1,354.406316.1563
Script end 1.1799  1,370.5625 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00350.2996160.0002
Check MTime0.00150.1263160.0001
Mysql Total
Database connection0.00110.091710.0011
Mysqli_queries1.110794.1259660.0168
Looping result0.00080.0651640.0000
Template Total1.135596.220.5678
Template load0.00210.177720.0010
Template processing1.133496.055220.5667
Template load and register function0.00110.094210.0011
states
state_id_array0.00170.146610.0017
state_identifier_array0.00160.134220.0008
Override
Cache load0.00180.1514350.0001
Sytem overhead
Fetch class attribute can translate value0.00070.057420.0003
Fetch class attribute name0.00150.127870.0002
XML
Image XML parsing0.00090.072120.0004
class_abstraction
Instantiating content class attribute0.00000.001990.0000
General
dbfile0.00100.0829180.0001
String conversion0.00000.001540.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
6content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
10content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
3content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
4content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
3content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 28
 Number of unique templates used: 7

Time used to render debug report: 0.0002 secs