Forums / Setup & design / [SOLVED] I have an image ezcontentobject. How to display it?

[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.

eZ debug

Timing: Jan 18 2025 16:51:36
Script start
Timing: Jan 18 2025 16:51:36
Module start 'content'
Timing: Jan 18 2025 16:51:37
Module end 'content'
Timing: Jan 18 2025 16:51:37
Script end

Main resources:

Total runtime1.3693 sec
Peak memory usage4,096.0000 KB
Database Queries194

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0080 587.9688180.7969
Module start 'content' 0.00801.2418 768.7656537.8672
Module end 'content' 1.24980.1193 1,306.6328332.7109
Script end 1.3692  1,639.3438 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00430.3173210.0002
Check MTime0.00170.1217210.0001
Mysql Total
Database connection0.00120.084110.0012
Mysqli_queries1.304095.23781940.0067
Looping result0.00190.13721920.0000
Template Total1.337197.720.6685
Template load0.00210.152920.0010
Template processing1.335097.496320.6675
Template load and register function0.00020.014210.0002
states
state_id_array0.00150.110710.0015
state_identifier_array0.00090.067820.0005
Override
Cache load0.00170.1249170.0001
Sytem overhead
Fetch class attribute can translate value0.00140.104830.0005
Fetch class attribute name0.00130.096240.0003
XML
Image XML parsing0.00090.065830.0003
class_abstraction
Instantiating content class attribute0.00000.000740.0000
General
dbfile0.00210.1556270.0001
String conversion0.00000.000730.0000
Note: percentages do not add up to 100% because some accumulators overlap

CSS/JS files loaded with "ezjscPacker" during request:

CacheTypePacklevelSourceFiles
CSS0extension/community/design/community/stylesheets/ext/jquery.autocomplete.css
extension/community_design/design/suncana/stylesheets/scrollbars.css
extension/community_design/design/suncana/stylesheets/tabs.css
extension/community_design/design/suncana/stylesheets/roadmap.css
extension/community_design/design/suncana/stylesheets/content.css
extension/community_design/design/suncana/stylesheets/star-rating.css
extension/community_design/design/suncana/stylesheets/syntax_and_custom_tags.css
extension/community_design/design/suncana/stylesheets/buttons.css
extension/community_design/design/suncana/stylesheets/tweetbox.css
extension/community_design/design/suncana/stylesheets/jquery.fancybox-1.3.4.css
extension/bcsmoothgallery/design/standard/stylesheets/magnific-popup.css
extension/sevenx/design/simple/stylesheets/star_rating.css
extension/sevenx/design/simple/stylesheets/libs/fontawesome/css/all.min.css
extension/sevenx/design/simple/stylesheets/main.v02.css
extension/sevenx/design/simple/stylesheets/main.v02.res.css
JS0extension/ezjscore/design/standard/lib/yui/3.17.2/build/yui/yui-min.js
extension/ezjscore/design/standard/javascript/jquery-3.7.0.min.js
extension/community_design/design/suncana/javascript/jquery.ui.core.min.js
extension/community_design/design/suncana/javascript/jquery.ui.widget.min.js
extension/community_design/design/suncana/javascript/jquery.easing.1.3.js
extension/community_design/design/suncana/javascript/jquery.ui.tabs.js
extension/community_design/design/suncana/javascript/jquery.hoverIntent.min.js
extension/community_design/design/suncana/javascript/jquery.popmenu.js
extension/community_design/design/suncana/javascript/jScrollPane.js
extension/community_design/design/suncana/javascript/jquery.mousewheel.js
extension/community_design/design/suncana/javascript/jquery.cycle.all.js
extension/sevenx/design/simple/javascript/jquery.scrollTo.js
extension/community_design/design/suncana/javascript/jquery.cookie.js
extension/community_design/design/suncana/javascript/ezstarrating_jquery.js
extension/community_design/design/suncana/javascript/jquery.initboxes.js
extension/community_design/design/suncana/javascript/app.js
extension/community_design/design/suncana/javascript/twitterwidget.js
extension/community_design/design/suncana/javascript/community.js
extension/community_design/design/suncana/javascript/roadmap.js
extension/community_design/design/suncana/javascript/ez.js
extension/community_design/design/suncana/javascript/ezshareevents.js
extension/sevenx/design/simple/javascript/main.js

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
1pagelayout.tpl<No override>extension/sevenx/design/simple/templates/pagelayout.tplEdit templateOverride template
 Number of times templates used: 11
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs