blob: aa498128886753ef83f057b11a1bf5bdc2ae6571 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
{strip}
{if !$liberty_preview}
{include file="bitpackage:fisheye/gallery_nav.tpl"}
{/if}
<div class="display fisheye">
{if !$liberty_preview}
<div class="floaticon">
{include file="bitpackage:liberty/services_inc.tpl" serviceLocation='icon' serviceHash=$gContent->mInfo}
{if $gContent->hasEditPermission()}
<a title="{tr}Edit{/tr}" href="{$smarty.const.FISHEYE_PKG_URL}edit_image.php?image_id={$gContent->mImageId}">{biticon ipackage="icons" iname="accessories-text-editor" iexplain="Edit Image"}</a>
<a title="{tr}Delete{/tr}" href="{$smarty.const.FISHEYE_PKG_URL}edit_image.php?image_id={$gContent->mImageId}&delete=1">{biticon ipackage="icons" iname="edit-delete" iexplain="Delete Image"}</a>
{/if}
</div>
{/if}
{formfeedback hash=$feedback}
<div class="header">
<h1>{$gContent->getTitle()|default:$gContent->mInfo.filename|escape}</h1>
</div>
<div class="body">
{include file="bitpackage:liberty/services_inc.tpl" serviceLocation='body' serviceHash=$gContent->mInfo}
{box class="box image"}
{if $gBitSystem->isFeatureActive( 'site_fancy_zoom' )}
{if $gContent->hasEditPermission() || $gGallery && $gGallery->getPreference( 'link_original_images' )}
<a href="{$gContent->mInfo.source_url|escape}">
{else}
<a href="{$gContent->mInfo.thumbnail_url.large}">
{/if}
{/if}
{include file=$gLibertySystem->getMimeTemplate('view',$gContent->mInfo.attachment_plugin_guid) attachment=$gContent->mInfo}
{if $gBitSystem->isFeatureActive('fisheye_image_list_description') and $gContent->mInfo.data ne ''}
<p class="description">{$gContent->mInfo.parsed_data}</p>
{/if}
{if $gBitSystem->isFeatureActive( 'site_fancy_zoom' )}
</a>
{/if}
</div><!-- end .body -->
{/box}
</div> <!-- end .body -->
{include file="bitpackage:liberty/services_inc.tpl" serviceLocation='view' serviceHash=$gContent->mInfo}
{if $gGallery && $gGallery->getPreference('allow_comments') eq 'y'}
{include file="bitpackage:liberty/comments.tpl"}
{/if}
</div> <!-- end .fisheye -->
{/strip}
|