aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/LocalFilesEditor/admin.tpl
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2008-03-01 14:49:11 +0000
committerpatdenice <patdenice@piwigo.org>2008-03-01 14:49:11 +0000
commit2ef8c58d3139ec931a75185a32ede7a7663c735f (patch)
tree46dea055272d100950ecc56ff58cca554e0801e0 /plugins/LocalFilesEditor/admin.tpl
parent732e456b3ba0c3e9ff4134e0ea815df03375918b (diff)
New: plugin LocalFiles Editor.
Corrected: $id in smarty comment style in intro.tpl git-svn-id: http://piwigo.org/svn/trunk@2235 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/LocalFilesEditor/admin.tpl')
-rw-r--r--plugins/LocalFilesEditor/admin.tpl37
1 files changed, 37 insertions, 0 deletions
diff --git a/plugins/LocalFilesEditor/admin.tpl b/plugins/LocalFilesEditor/admin.tpl
new file mode 100644
index 000000000..d8a228d67
--- /dev/null
+++ b/plugins/LocalFilesEditor/admin.tpl
@@ -0,0 +1,37 @@
+<div class="titrePage">
+ <h2>LocalFiles Editor</h2>
+ {$TABSHEET}
+</div>
+
+<form method="post" class="properties" action="" ENCTYPE="multipart/form-data">
+<div style="text-align:center;">
+
+{if isset ($css_lang_tpl)}
+{html_options name=file_to_edit options=$css_lang_tpl.OPTIONS selected=$css_lang_tpl.SELECTED}
+<input class="submit" type="submit" value="{'locfiledit_edit'|@translate}" name="edit" />
+<br>
+<br>
+{/if}
+
+{foreach from=$show_default item=file}
+<a href="{$file.SHOW_DEFAULT}" onclick="window.open( this.href, 'local_file', 'location=no,toolbar=no,menubar=no,status=no,resizable=yes,scrollbars=yes,fullscreen=yes' ); return false;">{'locfiledit_show_default'|@translate} "{$file.FILE}"</a>
+<br>
+{/foreach}
+
+{if isset ($zone_edit)}
+<br>
+<input type="text" style="display:none;" value="{$zone_edit.EDITED_FILE}" name="edited_file"/>
+<b>{$zone_edit.FILE_NAME}</b>
+<br>
+<textarea rows="30" name="text" style="width:90%;">{$zone_edit.CONTENT_FILE}</textarea>
+<br>{'locfiledit_save_bak'|@translate}
+<br><br>
+<input class="submit" type="submit" value="{'locfiledit_save_file'|@translate}" name="submit" {$TAG_INPUT_ENABLED}/>
+{if isset ($restore)}
+<input class="submit" type="submit" value="{'locfiledit_restore'|@translate}" name="restore" onclick="return confirm('{'locfiledit_restore_confirm'|@translate}');" {$TAG_INPUT_ENABLED}/>
+{/if}
+{/if}
+
+<br>
+</div>
+</form>