[SOLVED] I have an image ezcontentobject. How to display it?

Author Message

Ciprian Popovici

Wednesday 26 April 2006 1:07:32 am

I have a series of articles grouped in a folder. I've managed to write a folder view template which shows the article titles and a link to each article view.

Each article has a related image, linked via the XML body. I'd like to display that image (the thumbnail would be even better) in the folder listing. I've managed to use template code and to isolate the related ezcontentobject for each image article.

What do I do with it now? I'm having trouble exploring the image attributes fully due to the loop bomb created by "|attribute()" even with depth 1.

The way I see it, it should be possible to either:

a) Use a built-in method of displaying the ezcontentobject as an image. I have no idea how (I'm still a newbie) and even if I did, how do I override the template? My embed/image.tpl is NOT suitable for this case.

b) Extract/determine the full path (/var/storage/...) for each image. It seems like a hack, and even so, I haven't been able to do it.

Xavier Dutoit

Wednesday 26 April 2006 1:14:56 am

You can use embed.tpl as a start (to see you the <img src="... is build for instance) and copy paste it in your template to display it the way your like.

X+

http://www.sydesy.com

Ciprian Popovici

Wednesday 26 April 2006 4:03:57 am

A thousand thanks, effendi. :) Indeed, I found the secret answer by examining embed.tpl files under design/base/. It comes down to a single line, which means using attribute_view_gui judiciously. Here's the template code, in case anybody needs it. Just a reminder: $node is a folder, and the children are articles with related images.

{let children=fetch( content, list,
hash(
        parent_node_id, $node.node_id,
        sort_by, $node.sort_array
))}
{section name=Child loop=$children}
{def $related=fetch( 'content', 'related_objects',
hash( 'object_id', $:item.object.id,
      'all_relations', false(),
      'group_by_attribute', false(),
      'sort_by', array( array( 'class_name', true() ),
                        array( 'name', true() ) ) ) )
}
{attribute_view_gui
attribute=$related[0].data_map.image
image_class="gallerythumbnail"}
{/section}

It can be improved. You could (should) run some checks on all the members of $related to make sure you find one with class_name=image and can_read=true and so on. I'm assuming the first one always works and for me it's true but YMMV. Oh, and the related_objects fetch() has redundant params in my example, but it helps to learn them.

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 20:14:44
Script start
Timing: Jan 18 2025 20:14:44
Module start 'layout'
Timing: Jan 18 2025 20:14:44
Module start 'content'
Timing: Jan 18 2025 20:14:45
Module end 'content'
Timing: Jan 18 2025 20:14:45
Script end

Main resources:

Total runtime1.1791 sec
Peak memory usage4,096.0000 KB
Database Queries57

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0055 588.1719152.6563
Module start 'layout' 0.00560.0063 740.828139.5078
Module start 'content' 0.01181.1655 780.3359532.7578
Module end 'content' 1.17730.0018 1,313.093812.0938
Script end 1.1791  1,325.1875 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00310.2601160.0002
Check MTime0.00130.1062160.0001
Mysql Total
Database connection0.00100.082610.0010
Mysqli_queries1.130095.8350570.0198
Looping result0.00070.0583550.0000
Template Total1.143997.020.5720
Template load0.00200.171120.0010
Template processing1.141996.843220.5710
Template load and register function0.00020.014010.0002
states
state_id_array0.00110.093910.0011
state_identifier_array0.00190.160120.0009
Override
Cache load0.00160.1349170.0001
Sytem overhead
Fetch class attribute can translate value0.00090.076220.0004
Fetch class attribute name0.00110.089240.0003
XML
Image XML parsing0.00070.055520.0003
class_abstraction
Instantiating content class attribute0.00000.000840.0000
General
dbfile0.00100.0813160.0001
String conversion0.00000.001040.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
3content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
4content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
1content/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: 11
 Number of unique templates used: 6

Time used to render debug report: 0.0002 secs