blob: 5122be37d5d7ac525bae3f70ea7b31de47db92b4 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
{strip}
<div class="floaticon">
<a href="{$smarty.const.FISHEYE_PKG_URL}edit_image.php">{biticon ipackage="icons" iname="applications-internet" iexplain="upload new image"}</a>
</div>
<div class="edit fisheye">
<div class="header">
<h1>{if $gContent->mInfo.image_id}{tr}Edit Image{/tr}: {$gContent->mInfo.title|escape} {else}{tr}Add New Image{/tr} {/if}</h1>
</div>
<div class="body">
{form enctype="multipart/form-data"}
{jstabs}
{jstab title="Edit Image"}
{legend legend="Edit Image"}
{formfeedback error=$errors}
<input type="hidden" name="gallery_id" value="{$galleryId|escape}"/>
<input type="hidden" name="image_id" value="{$imageId}"/>
<input type="hidden" name="MAX_FILE_SIZE" value="1000000000" />
<div class="row">
{formlabel label="Title" for="image-title"}
{forminput}
<input type="text" name="title" id="image-title" value="{$gContent->mInfo.title|escape}" maxlength="160" size="50"/>
{/forminput}
</div>
<div class="row">
{formlabel label="Description" for="image-desc"}
{forminput}
<textarea name="edit" id="image-desc" rows="4" cols="50">{$gContent->mInfo.data|escape}</textarea>
{/forminput}
</div>
<div class="row">
{if $gContent->mInfo.source_url}
{formfeedback warning="{tr}Uploading a new image will replace the currently existing one.{/tr}"}
{assign var=repl value=Replacement}
{/if}
{formlabel label="Upload $repl Image" for="image-upload"}
{forminput}
<input type="file" name="imageFile" id="image-upload"/>
{/forminput}
</div>
<div class="row">
{formlabel label="Current Image"}
{forminput}
{if $gContent->mInfo.storage_path}
<img src="{$gContent->mInfo.thumbnail_url.medium}?{math equation="1 + rand(1,9999)"}" alt="{$gContent->mInfo.title|escape}" />
<br />
<small>
{if $gContent->mInfo.width && $gContent->mInfo.height}
{tr}Full size{/tr} - <a href="{$gContent->mInfo.source_url}">{$gContent->mInfo.width} x {$gContent->mInfo.height}</a>
{elseif $gContent->mInfo.source_url}
<a href="{$gContent->mInfo.source_url}">{tr}Full size{/tr}</a>
{/if}
</small>
{else}
<img src="{$smarty.const.FISHEYE_PKG_URL}image/no_image.png" alt="{$gContent->mInfo.title|escape}" />
{/if}
{/forminput}
</div>
<div class="row">
{formlabel label="Regenerate Thumbnails"}
{forminput}
<input type="checkbox" name="generate_thumbnails" value="1"/>
{/forminput}
</div>
<div class="row">
{formlabel label="Rotate Image"}
{forminput}
{if function_exists('exif_read_data')}
<label><input type="radio" name="rotate_image" value="auto"/> {biticon ipackage="fisheye" iname="rotate_auto" iexplain="Auto Rotate"}</label>
{/if}
<label><input type="radio" name="rotate_image" value="-90"/> {biticon ipackage="fisheye" iname="rotate_ccw" iexplain="Rotate Counter Clockwise"}</label>
<label>{biticon ipackage="fisheye" iname="rotate_cw" iexplain="Rotate Clockwise"} <input type="radio" name="rotate_image" value="90"/></label>
<br />
<label> <input type="radio" name="rotate_image" value="" checked="checked"/> {tr}don't rotate{/tr}</label>
{/forminput}
</div>
<div class="row">
{include file="bitpackage:fisheye/resize_image_select.tpl"}
</div>
<div class="row">
{formlabel label="Add This Image to These Galleries"}
{forminput}
{foreach from=$galleryList item=gal key=galleryId}
<input type="checkbox" name="galleryAdditions[]" value="{$galleryId}"
{if $requested_gallery == $galleryId}
checked="checked"
{else}
{if $gContent->mInfo.parent_galleries[$galleryId]}
checked="checked"
{/if}
{/if}
/> <a href="{$smarty.const.FISHEYE_PKG_URL}view.php?gallery_id={$galleryId}">{$gal.title|escape}</a>
<br />
{foreachelse}
<div>{tr}No Galleries Found{/tr}</div>
{/foreach}
{/forminput}
</div>
{include file="bitpackage:liberty/edit_services_inc.tpl serviceFile=content_edit_mini_tpl}
{/legend}
{/jstab}
{include file="bitpackage:liberty/edit_services_inc.tpl serviceFile=content_edit_tab_tpl}
{/jstabs}
<div class="row submit">
<input type="submit" name="saveImage" value="Save Image"/>
</div>
{/form}
</div> <!-- end .body -->
</div> <!-- end .fisheye -->
{/strip}
|