0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-blog_post.tpl
{title url="tiki-blog_post.php?blogId=$blogId&postId=$postId"}{if $postId gt 0}{tr}Edit Post{/tr}{else}{tr}New Post{/tr}{/if}{if !empty($blog_data.title)} - {$blog_data.title|escape}{/if}{/title} <div class="navbar"> {if $postId > 0} {button href=$postId|sefurl:blogpost _text="{tr}View post{/tr}"} {/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 blog 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'} {remarksbox type='Warning' title="{tr}Warning{/tr}"} <div class="highlight"><em class='mandatory_note'>{tr}A contribution is mandatory{/tr}</em></div> {/remarksbox} {/if} {if $preview eq 'y'} <div align="center" class="attention" style="font-weight:bold">{tr}Note: Remember that this is only a preview, and has not yet been saved!{/tr}</div> <div class="blogpost post post_single"> {include file='blog_wrapper.tpl' blog_post_context='preview'} </div> {/if} {capture name=actionUrlParam}{strip} {if $postId > 0 && $blogId > 0} ?blogId={$blogId}&postId={$postId} {elseif $postId > 0} ?postId={$postId} {elseif $blogId > 0} ?blogId={$blogId} {/if} {/strip}{/capture} <form enctype="multipart/form-data" name='blogpost' method="post" action="tiki-blog_post.php{$smarty.capture.actionUrlParam}" id ='editpageform'> <input type="hidden" name="wysiwyg" value="{$wysiwyg|escape}" /> <input type="hidden" name="postId" value="{$postId|escape}" /> <fieldset class="tabcontent"> <table class="formcolor"> {if $blogs|@count gt 1 and ( !isset($blogId) or $blogId eq 0 )} <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|escape}</option> {/section} </select> </td> </tr> {else} <input type="hidden" name="blogId" value="{$blogId|escape}" /> {/if} <tr> <td class="editblogform">{tr}Title:{/tr}</td><td class="editblogform"> <input type="text" size="80" name="title" value="{$post_info.title|escape}" /> </td> </tr> <tr> <td class="editblogform"> {tr}Body:{/tr} </td> <td class="editblogform"> {textarea id='blogedit' class="wikiedit" name="data"}{$data}{/textarea} </td> </tr> {if $blog_data.use_excerpt eq 'y'} <tr> <td class="editblogform"> {tr}Excerpt:{/tr} </td> <td class="editblogform"> {textarea id='post_excerpt' class="wikiedit" name="excerpt"}{$post_info.excerpt}{/textarea} </td> </tr> {/if} {if $postId > 0 && $wysiwyg ne 'y'} {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} {if $prefs.geo_locate_blogpost eq 'y'} <tr> <td>{tr}Location{/tr}</td> <td> {$headerlib->add_map()} <div class="map-container" data-target-field="geolocation" style="height: 250px; width: 250px;"></div> <input type="hidden" name="geolocation" value="{$geolocation_string}" /> </td> </tr> {/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.feature_blog_edit_publish_date eq 'y'} <tr id='show_pubdate' class="editblogform"> <td>{tr}Publish Date{/tr}</td> <td> {html_select_date prefix="publish_" time=$post_info.created start_year="-5" end_year="+10" field_order=$prefs.display_field_order} {tr}at{/tr} {html_select_time prefix="publish_" time=$post_info.created display_seconds=false use_24_hours=$use_24hr_clock} </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} {include file='categorize.tpl'} </table> </fieldset> <input type="submit" class="wikiaction" name="preview" value="{tr}Preview{/tr}" onclick="needToConfirm=false" /> <input type="submit" class="wikiaction" name="save" value="{tr}Save{/tr}" onclick="needToConfirm=false" /> <input type="hidden" name="referer" value="{$referer|escape}" /> <input type="submit" name="cancel" onclick='document.location="{$referer|escape:'html'}";needToConfirm=false;return false;' value="{tr}Cancel{/tr}"/> </form>