3c10b3da9f
Update editarea to 0.8.2. Remove CSS tab. Fix jQuery path. git-svn-id: http://piwigo.org/svn/trunk@5160 68402e56-0260-453c-a942-63ccdbb3a9ee
101 lines
3.7 KiB
Smarty
101 lines
3.7 KiB
Smarty
{html_head}<link rel="stylesheet" type="text/css" href="{$LOCALEDIT_PATH}locfiledit.css">{/html_head}
|
|
{known_script id="editarea" src=$LOCALEDIT_PATH|@cat:"editarea/edit_area_full.js"}
|
|
<script type="text/javascript">
|
|
var editarea = "{$LOAD_EDITAREA}";
|
|
|
|
function loadEditarea() {ldelim}
|
|
editAreaLoader.init({ldelim}
|
|
id: "text"
|
|
{foreach from=$EDITAREA_OPTIONS key=option item=value}
|
|
, {$option}: {$value|editarea_quote}
|
|
{/foreach}
|
|
});
|
|
jQuery("#showedit").hide();
|
|
jQuery("#hideedit").show();
|
|
jQuery.post("plugins/LocalFilesEditor/update_config.php", {ldelim} editarea: "on"});
|
|
}
|
|
|
|
function unloadEditarea() {ldelim}
|
|
editAreaLoader.delete_instance("text");
|
|
jQuery("#hideedit").hide();
|
|
jQuery("#showedit").show();
|
|
jQuery.post("plugins/LocalFilesEditor/update_config.php", {ldelim} editarea: "off"});
|
|
}
|
|
</script>
|
|
|
|
<div class="titrePage">
|
|
<h2>LocalFiles Editor</h2>
|
|
</div>
|
|
|
|
<form method="post" class="properties" action="{$F_ACTION}" ENCTYPE="multipart/form-data" name="form">
|
|
|
|
<div id="LocalFilesEditor">
|
|
|
|
<input type="hidden" value="{$zone_edit.EDITED_FILE}" name="edited_file"/>
|
|
|
|
{if isset ($create_tpl)}
|
|
<table>
|
|
<tr>
|
|
<td style="text-align: right;">{'locfiledit_new_filename'|@translate}</td>
|
|
<td style="text-align: left;"><input type="text" size="55" maxlength="50" value="{$create_tpl.NEW_FILE_NAME}" name="tpl_name"/></td>
|
|
</tr>
|
|
<tr>
|
|
<td style="text-align: right;">{'locfiledit_parent_directory'|@translate}</td>
|
|
<td style="text-align: left;">{html_options name=tpl_parent options=$create_tpl.PARENT_OPTIONS selected=$create_tpl.PARENT_SELECTED}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="text-align: right;">{'locfiledit_model'|@translate}</td>
|
|
<td style="text-align: left;">{html_options name=tpl_model options=$create_tpl.MODEL_OPTIONS selected=$create_tpl.MODEL_SELECTED}</td>
|
|
</tr>
|
|
</table>
|
|
<br><br>
|
|
<input class="submit" type="submit" value="{'Submit'|@translate}" name="create_tpl" />
|
|
{/if}
|
|
|
|
{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 isset ($css_lang_tpl.NEW_FILE_URL)}
|
|
<span class="{$css_lang_tpl.NEW_FILE_CLASS}">
|
|
<a href="{$css_lang_tpl.NEW_FILE_URL}">{'locfiledit_new_tpl'|@translate}</a>
|
|
</span>
|
|
{/if}
|
|
{/if}
|
|
|
|
{foreach from=$show_default item=file name=default_loop}
|
|
<span class="top_right">
|
|
<a href="{$file.SHOW_DEFAULT}" onclick="window.open( this.href, 'local_file', 'location=no,toolbar=no,menubar=no,status=no,resizable=yes,scrollbars=yes,width=800,height=600' ); return false;">{'locfiledit_show_default'|@translate} "{$file.FILE}"</a>
|
|
</span>
|
|
{if !($smarty.foreach.default_loop.last)}<br>{/if}
|
|
{/foreach}
|
|
|
|
{if isset ($zone_edit)}
|
|
<b>{$zone_edit.FILE_NAME}</b>
|
|
|
|
<textarea rows="30" cols="90" name="text" id="text">{$zone_edit.CONTENT_FILE}</textarea>
|
|
<div id="editarea_buttons">
|
|
<a href="javascript:loadEditarea();" id="showedit">[{'locfiledit_enable_editarea'|@translate}]</a>
|
|
<a href="javascript:unloadEditarea();" id="hideedit">[{'locfiledit_disable_editarea'|@translate}]</a>
|
|
</div>
|
|
|
|
<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|escape:'javascript'}');" {$TAG_INPUT_ENABLED}/>
|
|
{/if}
|
|
|
|
{if isset ($restore_infos)}
|
|
<br><br>
|
|
{'locfiledit_save_bak'|@translate}
|
|
{/if}
|
|
|
|
{/if}
|
|
</div>
|
|
</form>
|
|
|
|
<script type="text/javascript">
|
|
jQuery("#editarea_buttons").show();
|
|
if ((editarea == "on") && (document.getElementById("text") != null)) loadEditarea();
|
|
</script>
|