Share » Forums » Setup & design » fetching attributes with the same...

fetching attributes with the same name of two different classes

fetching attributes with the same name of two different classes

Friday 16 April 2004 1:58:38 am - 1 reply

Modified on Friday 16 April 2004 3:51:24 am by Nicolas Heiringhoff

Author Message

Nicolas Heiringhoff

Friday 16 April 2004 3:54:07 am

Now we have found a solution by modyfing a code we have used before. With this code we can get the specific attribute.

{* Get the dokus (ClassID: "2"! Might be different for you!) *}
{let articles=fetch('content','list',hash(parent_node_id,204,$node.node_id,class_filter_type,"include",class_filter_array,array(29)))}

{* Get a count of the articles (ClassID: "2"! Might be different for you!) in this folder. *}
{let articles_count=fetch('content','list_count',hash(parent_node_id,$node.node_id,class_filter_type,"include",class_filter_array,array(28)))}

{* Now decide what to do *}
{switch name=decision match=$articles_count}
{case match=1}
{* Show this if there is only one article! E.g. include the "full article view" page. *}
{section name=Article loop=$articles}
{node_view_gui view=full content_node=$decision:Article:item}
{/section}
{/case}
{case}
{* Show this for more than one article. *}
{section name=Article loop=$articles}

{section name=read_link show=$decision:Article:item.contentobject_version_object.data_map.body}
<a href={concat("/content/view/full/",$decision:Article:item.node_id)|ezurl}>{$decision:Article:item.data_map.faq.data_text}</a>
{/section}

<br />

<img src={"trennlinie.png"|ezimage}
<br />


{/section}
{/case}
{/switch}

http://www.heiringhoff.de

You must be logged in to post messages in this topic!

36 542 Users on board!

Forums menu