ACC SHELL
{literal}
<script language="javascript" type="text/javascript" src="./scripts/tiny_mce/tiny_mce.js"></script>
<script language="javascript" type="text/javascript">
tinyMCE.init({
mode : "textareas",
theme : "advanced",
language : "cs",
plugins : "spellchecker,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,insertdatetime,preview,zoom,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras",
theme_advanced_buttons1_add : "fontselect,fontsizeselect",
theme_advanced_buttons2_add_before: "cut,copy,paste",
theme_advanced_buttons2_add : "separator,insertdate,inserttime,separator,forecolor,backcolor",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_path_location : "bottom",
content_css : "example_data/example_word.css",
plugin_insertdate_dateFormat : "%Y-%m-%d",
plugin_insertdate_timeFormat : "%H:%M:%S",
extended_valid_elements : "img[class|src|border=0|alt|title|hspace|vspace|width|height|align|onmouseover|onmouseout|name],hr[class|width|size|noshade],font[face|size|color|style],span[class|align|style]",
external_link_list_url : "example_data/example_link_list.js",
external_image_list_url : "example_data/example_image_list.js",
flash_external_list_url : "example_data/example_flash_list.js",
file_browser_callback : "mcFileManager.filebrowserCallBack",
paste_auto_cleanup_on_paste : true
});
</script>
{/literal}
<form id="form" method="post">
<p>
<label for="title">Nadpis:</label><br />
<input type="text" id="title" name="title" tabindex="1" value="{$title}" />
</p>
<p>
<label for="content">Obsah:</label><br />
<textarea id="content" name="content" style="width:100%" rows="15">
{$content}
</textarea>
</p>
<p>
<input type="checkbox" id="show" name="show" tabindex="2" {if $show == "on"}checked{/if} />
<label for="show">Zobrazovat aktualitu?</label>
</p>
<p>
<input type="submit" value="Uložit" id="submit" name="submit" tabindex="3" />
</p>
</form>
ACC SHELL 2018