Edit File: fileuploader.tpl
<script type="text/javascript"> (function(_, $) { $.extend(_, { post_max_size_bytes: '{"post_max_size"|ini_get|fn_return_bytes}', files_upload_max_size_bytes: '{"upload_max_filesize"|ini_get|fn_return_bytes}', post_max_size_mbytes: '{"post_max_size"|ini_get}', files_upload_max_size_mbytes: '{"upload_max_filesize"|ini_get}', allowed_file_path: '{fn_get_http_files_dir_path()}' }); _.tr({ file_is_too_large: '{__("file_is_too_large")|escape:"javascript"}' }); }(Tygh, Tygh.$)); </script> {script src="js/tygh/fileuploader_scripts.js"} {script src="js/tygh/node_cloning.js"} {assign var="id_var_name" value="`$prefix`{$var_name|md5}"} <div class="fileuploader cm-field-container"> <input type="hidden" id="{$label_id}" value="{if $images}{$id_var_name}{/if}" /> {foreach from=$images key="image_id" item="image"} <div class="upload-file-section cm-uploaded-image" id="message_{$id_var_name}_{$image.file}" title=""> <p class="cm-fu-file"> {hook name="fileuploader:links"} {if $image.location == "cart"} {assign var="delete_link" value="`$runtime.controller`.delete_file?cart_id=`$id`&option_id=`$po.option_id`&file=`$image_id`&redirect_mode=cart"} {assign var="download_link" value="`$runtime.controller`.get_custom_file?cart_id=`$id`&option_id=`$po.option_id`&file=`$image_id`"} {/if} {/hook} {if $image.is_image} <a href="{$image.detailed|fn_url}"><img src="{$image.thumbnail|fn_url}" border="0" /></a><br /> {/if} {hook name="fileuploader:uploaded_files"} {if $delete_link}<a class="cm-ajax" href="{$delete_link|fn_url}">{/if}{if !($po.required == "Y" && $images|count == 1)}<i id="clean_selection_{$id_var_name}_{$image.file}" alt="{__("remove_this_item")}" title="{__("remove_this_item")}" onclick="Tygh.fileuploader.clean_selection(this.id); {if $multiupload != "Y"}Tygh.fileuploader.toggle_links('{$id_var_name}', 'show');{/if} Tygh.fileuploader.check_required_field('{$id_var_name}', '{$label_id}');" class="icon-remove-sign cm-tooltip hand"></i> {/if}{if $delete_link}</a>{/if}<span>{if $download_link}<a href="{$download_link|fn_url}">{/if}{$image.name}{if $download_link}</a>{/if}</span> {/hook} </p> </div> {/foreach} <div id="file_uploader_{$id_var_name}"> <div class="upload-file-section" id="message_{$id_var_name}" title=""> <p class="cm-fu-file hidden"><i id="clean_selection_{$id_var_name}" alt="{__("remove_this_item")}" title="{__("remove_this_item")}" onclick="Tygh.fileuploader.clean_selection(this.id); {if $multiupload != "Y"}Tygh.fileuploader.toggle_links(this.id, 'show');{/if} Tygh.fileuploader.check_required_field('{$id_var_name}', '{$label_id}');" class="icon-remove-sign cm-tooltip hand"></i> <span></span></p> {if $multiupload != "Y"}<p class="cm-fu-no-file {if $images}hidden{/if}">{__("text_select_file")}</p>{/if} </div> {strip} <input type="hidden" name="file_{$var_name}" value="{if $image_name}{$image_name}{/if}" id="file_{$id_var_name}" {if $is_image}class="cm-image-field"{/if} /> <input type="hidden" name="type_{$var_name}" value="{if $image_name}local{/if}" id="type_{$id_var_name}" {if $is_image}class="cm-image-field"{/if} /> <div class="btn-group {if $multiupload != "Y" && $images}hidden{/if}" id="link_container_{$id_var_name}"> <div class="upload-file-local"> <a class="btn"><span data-ca-multi="Y" {if !$images}class="hidden"{/if}>{$upload_another_file_text|default:__("upload_another_file")}</span><span data-ca-multi="N" {if $images}class="hidden"{/if}>{$upload_file_text|default:__("local")}</span></a> <div class="image-selector"> <label for=""> <input type="file" name="file_{$var_name}" id="local_{$id_var_name}" onchange="Tygh.fileuploader.show_loader(this.id); {if $multiupload == "Y"}Tygh.fileuploader.check_image(this.id);{/if} Tygh.fileuploader.check_required_field('{$id_var_name}', '{$label_id}');" class="file{if $is_image} cm-image-field{/if}" data-ca-empty-file="" onclick="Tygh.$(this).removeAttr('data-ca-empty-file');"> </label> </div> </div> {if !($hide_server || ($runtime.company_id && !$runtime.simple_ultimate) || "RESTRICTED_ADMIN"|defined)} <a class="btn" onclick="Tygh.fileuploader.show_loader(this.id);" id="server_{$id_var_name}">{__("server")}</a> {/if} <a class="btn" onclick="Tygh.fileuploader.show_loader(this.id);" id="url_{$id_var_name}">{__("url")}</a> {if $hidden_name} <input type="hidden" name="{$hidden_name}" value="{$hidden_value}"> {/if} </div> {if $allowed_ext} <p class="mute micro-note"> {__("text_allowed_to_upload_file_extension", ["[ext]" => $allowed_ext])} </p> {/if} {/strip} </div> </div><!--fileuploader-->
Back to File Manager