problem with the filter

Author Message

charlie Olympic

Wednesday 17 September 2008 1:42:46 am

Hi,
I have problem with the filter. I created a class with two attribute "block of text." The first attribute is filled by users and the second by the administrator.
The game goes like this:
The user filled out the first attribute with comments and his own publication displayed directly on the site in order of publication (10 last). And when the administrator finds interesting comment, the administrator completed the second attribute with a confirmation message. And once your message is approved, it appears under the heading "approved" by order of validation (15 people). So my question is, what filter should be applied when the second display?


{def $last_q=fetch( content, list,hash(parent_node_id,2,depth,2,limit,5,
class_filter_type,'include',
class_filter_array,array('faq'),
'main_node_only', true(),
'sort_by',array('modified',false())) )}

{foreach $last_q as $last}
				
				{attribute_view_gui attribute=$last.data_map.question}
				
				<p>( {$dq.object.published|l10n(date)} )</p>

{/foreach}	
{undef $last_q}

Ivo Lukac

Wednesday 17 September 2008 3:10:17 am

Hi charlie,

Unfortunately you can't filter on attribute "block of text" which is multi line text. More information about this can be found here:
http://ez.no/doc/ez_publish/technical_manual/4_0/reference/modules/content/fetch_functions/list

You can of course do it in the template something like this:

 {foreach $last_q as $last}
                    {if $last.data_map.question.content}            
                                {attribute_view_gui attribute=$last.data_map.question}
                                
                                <p>( {$dq.object.published|l10n(date)} )</p>
                     {/if}
{/foreach}      
 

http://www.linkedin.com/in/ivolukac
http://www.netgen.hr/eng/blog
http://twitter.com/ilukac

charlie Olympic

Wednesday 17 September 2008 4:08:14 am


hi,
your code works but there is a problem: when a comment has been posted by the user and has not yet confirmed, it replaces an element in the "approved" but he did not data in the field "response", it does nothing but it still removes an item from the list. It is there no way to make a filter? I saw a doc on "extend_attribute_filter" I do not know if it can help me but the height is that I did not understand how it works!

Thank you

Ivo Lukac

Wednesday 17 September 2008 6:47:58 am

Hi charlie,

Yes, it could be done with extended_attribute_filter but it could be hard for less experienced developer (knowledge of SQL and eZ DB model). I suggest you try to solve it in the template.

http://www.linkedin.com/in/ivolukac
http://www.netgen.hr/eng/blog
http://twitter.com/ilukac

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

Main resources:

Total runtime0.6360 sec
Peak memory usage4,096.0000 KB
Database Queries60

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0061 589.0234152.6094
Module start 'layout' 0.00610.0033 741.632839.4141
Module start 'content' 0.00940.6252 781.0469552.5547
Module end 'content' 0.63450.0014 1,333.601612.1797
Script end 0.6360  1,345.7813 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00320.5046160.0002
Check MTime0.00130.2085160.0001
Mysql Total
Database connection0.00120.180810.0012
Mysqli_queries0.581891.4785600.0097
Looping result0.00060.0947580.0000
Template Total0.609295.820.3046
Template load0.00220.353520.0011
Template processing0.607095.434320.3035
Template load and register function0.00020.037010.0002
states
state_id_array0.00070.103110.0007
state_identifier_array0.00070.106320.0003
Override
Cache load0.00170.2740240.0001
Sytem overhead
Fetch class attribute can translate value0.00080.123120.0004
Fetch class attribute name0.00230.359950.0005
XML
Image XML parsing0.00070.114020.0004
class_abstraction
Instantiating content class attribute0.00000.002260.0000
General
dbfile0.00070.1092170.0000
String conversion0.00000.001640.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
3content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
5content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
2content/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: 18
 Number of unique templates used: 7

Time used to render debug report: 0.0002 secs