Forums / General / problem with the filter

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