0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-blog_post.tpl
{popup_init src="lib/overlib.js"} {title url="tiki-blog_post.php?blogId=$blogId&postId=$postId"}{if $postId gt 0}{tr}Edit Post{/tr}{else}{tr}Post{/tr}{/if} - {$blog_data.title|escape}{/title} <div class="navbar"> {if $prefs.feature_wysiwyg eq 'y' and $prefs.wysiwyg_optional eq 'y'} {if $wysiwyg ne 'y'} {button href="tiki-blog_post.php?wysiwyg=y" _auto_args='blogId,postId' _text="{tr}Use Wysiwyg Editor{/tr}"} {else} {button href="tiki-blog_post.php?wysiwyg=n" _auto_args='blogId,postId' _text="{tr}Use Normal Editor{/tr}"} {/if} {/if} {if $blogId gt 0 } {assign var=thisblog value=$blogId|sefurl:blog} {button href=$thisblog _text="{tr}View Blog{/tr}"} {/if} {if $blogs|@count gt 1 } {* No need for users to go to log list if they are already looking at the only blog *} {button href="tiki-list_blogs.php" _text="{tr}List Blogs{/tr}"} {/if} </div> {if $contribution_needed eq 'y'} <div class="simplebox highlight">{tr}A contribution is mandatory{/tr}</div> {/if} {if $preview eq 'y'} {include file=tiki-preview_post.tpl} {/if} {if $wysiwyg ne 'y'} {remarksbox type="tip" title="{tr}Tip{/tr}"} {tr}If you want to use images please save the post first and you will be able to edit/post images. Use the <img> snippet to include uploaded images in the textarea editor or use the image URL to include images using the WYSIWYG editor. {/tr} {if $wysiwyg eq 'n' and $prefs.wysiwyg_optional eq 'y'} <hr />{tr}Use ...page... to separate pages in a multi-page post{/tr} {/if} {/remarksbox} {/if} <form enctype="multipart/form-data" name='blogpost' method="post" action="tiki-blog_post.php" id ='editpageform'> <input type="hidden" name="wysiwyg" value="{$wysiwyg|escape}" /> <input type="hidden" name="postId" value="{$postId|escape}" /> {if $blogs|@count gt 1 and ( !isset($blogId) or $blogId eq 0 )} <table class="normal"> <tr><td class="editblogform">{tr}Blog{/tr}</td><td class="editblogform"> <select name="blogId"> {section name=ix loop=$blogs} <option value="{$blogs[ix].blogId|escape}" {if $blogs[ix].blogId eq $blogId}selected="selected"{/if}>{$blogs[ix].title}</option> {/section} </select> </td></tr> {else} <input type="hidden" name="blogId" value="{$blogId|escape}" /> <table class="normal"> {/if} {assign var=area_name value="blogedit"} {if $prefs.feature_smileys eq 'y' && not $wysiwyg} <tr><td class="editblogform">{tr}Smileys{/tr}</td><td class="editblogform"> {include file="tiki-smileys.tpl" area_name='blogedit'} </td></tr> {/if} {if $blog_data.use_title eq 'y' || !$blogId} <tr> <td class="editblogform">{tr}Title{/tr}</td><td class="editblogform"> <input type="text" size="80" name="title" value="{$title|escape}" /> </td> </tr> {/if} {* show quicktags over textarea *} {if $prefs.quicktags_over_textarea eq 'y' and ($prefs.feature_wysiwyg eq 'n' or ($prefs.feature_wysiwyg eq 'y' and $prefs.wysiwyg_optional eq 'y' and $wysiwyg eq 'n') ) } <tr> <td class="editblogform"><label>{tr}Quicktags{/tr}</label></td> <td class="editblogform"> {include file=tiki-edit_help_tool.tpl area_name='blogedit'} </td> </tr> {/if} {* show quickags on left side from textarea *} {if ( $prefs.feature_wysiwyg eq 'n' or ($prefs.feature_wysiwyg eq 'y' and $prefs.wysiwyg_optional eq 'y' and $wysiwyg eq 'n') )} <tr> <td class="editblogform"> <br /> {include file="textareasize.tpl" area_name='blogedit' formId='editpageform'} <br /> {if $prefs.quicktags_over_textarea neq 'y'} <br /><br /> {include file=tiki-edit_help_tool.tpl area_name="blogedit"} {/if} </td> <td class="editblogform"> <textarea id='blogedit' class="wikiedit" name="data" rows="{$rows}" cols="{$cols}" wrap="virtual">{$data|escape}</textarea> {else} {* show textarea with wysiwyg editor *} <td class="editblogform" colspan="2"> {editform Meat=$data InstanceName='data' ToolbarSet="Tiki"} {/if} <input type="hidden" name="rows" value="{$rows}"/> <input type="hidden" name="cols" value="{$cols}"/> </td> </tr> {if $postId > 0 && $wysiwyg ne 'y'} <tr><td class="editblogform">{tr}Upload image for this post{/tr}</td> <td class="editblogform"> <input type="hidden" name="MAX_FILE_SIZE" value="1000000000" /> <input name="userfile1" type="file" /> </td></tr> {if count($post_images) > 0} <tr><td class="editblogform">{tr}Images{/tr}</td> <td class="editblogform"> <table> {section name=ix loop=$post_images} <tr> <td> <a class="link" href="tiki-view_blog_post_image.php?imgId={$post_images[ix].imgId}">{$post_images[ix].filename}</a> </td> <td> <textarea rows="2" cols="40">{$post_images[ix].link|escape}</textarea><br /> <textarea rows="1" cols="40">{$post_images[ix].absolute|escape}</textarea> </td> <td> <a href="tiki-blog_post.php?postId={$postId}&remove_image={$post_images[ix].imgId}"><img src='img/icons/trash.gif' alt='{tr}Trash{/tr}'/></a> </td> </tr> {/section} </table> </td></tr> {/if} {/if} <tr><td class="editblogform">{tr}Mark entry as private:{/tr}</td> <td class="editblogform"><input type="checkbox" name="blogpriv" {if $blogpriv eq 'y'}checked="checked"{/if} /></td></tr> {if $prefs.blog_spellcheck eq 'y'} <tr><td class="editblogform">{tr}Spellcheck{/tr}: </td><td class="editblogform"><input type="checkbox" name="spellcheck" {if $spellcheck eq 'y'}checked="checked"{/if} /></td></tr> {/if} {if $prefs.feature_freetags eq 'y' and $tiki_p_freetags_tag eq 'y'} {include file=freetag.tpl} {/if} {if $prefs.feature_contribution eq 'y'} {include file="contribution.tpl"} {/if} <tr><td class="editblogform"> </td><td class="editblogform"> <input type="submit" class="wikiaction" name="preview" value="{tr}Preview{/tr}" /> <input type="submit" class="wikiaction" name="save" value="{tr}Save{/tr}" /> <input type="submit" class="wikiaction" name="save_exit" value="{tr}Save and Exit{/tr}" /> <input type="hidden" name="referer" value="{$referer|escape}" /> <input type="submit" name="cancel" onclick='document.location="{$referer|escape:'html'}";return false;' value="{tr}Cancel{/tr}"/> </td></tr> </table> </form> <br /> {include file=tiki-edit_help.tpl}