Fetch image issue...

Author Message

Sandeep Kadam

Monday 08 March 2010 1:30:08 am

Hello All,

Can any one help me in this I have uploaded image in media folder using create here image,image name is image1: folder id which contains image = 361
code i have used in pagelayout to fetch image on user site is :
{def $promos = fetch(content,list,hash('parent_node_id','361'))}
{foreach $promos as $promo}
{node_view_gui content_node=$promo view="full"}
{/foreach}

my problem is that it shows image using image class large "image1_large.jpg" but I want original image what i have uploaded.how can i achieve this what I have done to achieve this is I have copied image.tpl
from
base\override\templates\full\
to
mysite\override\templates\full
and have modified code in image.tpl

from
{attribute_view_gui attribute=$node.data_map.image image_class=large}
to
{attribute_view_gui attribute=$node.data_map.image image_class=original}
but i dont think this is proper way of doing this, can any one please guide me how can i do this without modifying image.tpl.

Thank you,
Sandeep

Damien MARTIN

Tuesday 09 March 2010 2:47:39 am

This is another way to do that :

{def $promos = fetch(content,list,hash('parent_node_id','361'))}
{foreach $promos as $promo}
    <img src="/{$promo.data_map.image.content['original'].url}" alt="my picture" />
{/foreach}

Not the best way to do, but it works...

Sandeep Kadam

Tuesday 09 March 2010 4:16:33 am

Hi Damien,

Really thanx for your reply....

<img src="/{$promo.data_map.image.content['original'].url}" alt="my picture" />

but still there was an issue when i used code given by you i get image as

<img src=/var/plain_site/storage/images/media/images/a/image1/1837-1-eng-US/image1.jpg alt="my picture" />

but it's not showing the image,
image src is missing "mysite" name like

src=/mysite/var/plain_site/storage/images/media/images/a/image1/1837-1-eng-US/image1.jpg

so i have made some modification in your code like below:

<img src={$promo.data_map.image.content['original'].full_path|ezroot()}  alt="my picture" />

and now it works fine for me thank's to you ...

Thank You,
Sandeep

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 10:19:15
Script start
Timing: Jan 18 2025 10:19:15
Module start 'layout'
Timing: Jan 18 2025 10:19:15
Module start 'content'
Timing: Jan 18 2025 10:19:15
Module end 'content'
Timing: Jan 18 2025 10:19:15
Script end

Main resources:

Total runtime0.0185 sec
Peak memory usage2,048.0000 KB
Database Queries3

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0046 587.7969152.6094
Module start 'layout' 0.00460.0038 740.406339.4297
Module start 'content' 0.00840.0075 779.835989.5234
Module end 'content' 0.01590.0025 869.359434.3047
Script end 0.0184  903.6641 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.002614.0242140.0002
Check MTime0.00126.4027140.0001
Mysql Total
Database connection0.00063.346610.0006
Mysqli_queries0.002915.882130.0010
Looping result0.00000.129110.0000
Template Total0.002011.010.0020
Template load0.00105.659010.0010
Template processing0.00105.296210.0010
Override
Cache load0.00084.207810.0008
General
dbfile0.002513.493580.0003
String conversion0.00000.060740.0000
Note: percentages do not add up to 100% because some accumulators overlap

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 1
 Number of unique templates used: 1

Time used to render debug report: 0.0001 secs