0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
7.0-0
/
standard
/
htdocs
/
templates
/
[
Home
]
File: tiki-edit_programmed_content.tpl
{title url="tiki-edit_programmed_content.php?contentId=$contentId"}{tr}Program dynamic content for block:{/tr} {$contentId}{/title} <div class="navbar"> {button href="?contentId=$contentId" _text="{tr}Create New Block{/tr}"} {button href="tiki-list_contents.php" _text="{tr}Return to block listing{/tr}"} </div> <h2>{tr}Block description: {/tr}{$description}</h2> <h2> {if $data} {tr}Edit{/tr} {else} {tr}Create{/tr} {/if} {tr}content{/tr} </h2> {if $pId} {tr}You are editing block:{/tr} {$pId}<br /> {/if} <form action="tiki-edit_programmed_content.php" method="post"> <input type="hidden" name="contentId" value="{$contentId|escape}" /> <input type="hidden" name="pId" value="{$pId|escape}" /> <table class="formcolor"> <tr> <td>{tr}Content Type:{/tr}</td> <td> <select name="content_type" class="type-selector"> <option value="static"{if $info.content_type eq 'static'} selected="selected"{/if}>{tr}Text area{/tr}</option> <option value="page"{if $info.content_type eq 'page'} selected="selected"{/if}>{tr}Wiki Page{/tr}</option> </select> </td> </tr> <tr class="type-cond for-page"> <td>{tr}Page Name:{/tr}</td> <td> <input type="text" name="page_name" value="{$info.page_name|escape}"/> </td> </tr> <tr class="type-cond for-static"> <td>{tr}Content:{/tr}</td> <td> <textarea rows="5" cols="40" name="data">{$info.data|escape}</textarea> </td> </tr> <tr> <td>{tr}Publishing date:{/tr}</td> <td> {html_select_date time=$publishDate end_year="+1" field_order=$prefs.display_field_order} {tr}at{/tr} {html_select_time time=$publishDate display_seconds=false use_24_hours=$use_24hr_clock}</td> </tr> <tr> <td> </td> <td> <input type="submit" name="save" value="{tr}Save{/tr}" /> </td> </tr> </table> {jq} $('.type-selector').change( function( e ) { $('.type-cond').hide(); var val = $('.type-selector').val(); $('.for-' + val).show(); } ).trigger('change'); {/jq} </form> <h2>{tr}Versions{/tr}</h2> {if $listpages or ($find ne '')} {include file='find.tpl'} {/if} <table class="normal"> <tr> <th>{self_link _sort_arg='sort_mode' _sort_field='pId'}{tr}Id{/tr}{/self_link}</th> <th>{self_link _sort_arg='sort_mode' _sort_field='publishDate'}{tr}Publishing Date{/tr}{/self_link}</th> <th>{self_link _sort_arg='sort_mode' _sort_field='data'}{tr}Data{/tr}{/self_link}</th> <th>{tr}Action{/tr}</th> </tr> {section name=changes loop=$listpages} {if $actual eq $listpages[changes].publishDate} {assign var=class value=third} {else} {if $actual > $listpages[changes].publishDate} {assign var=class value=odd} {else} {assign var=class value=even} {/if} {/if} <tr class="{$class}"> <td class="id"> {$listpages[changes].pId} </td> <td class="date"> {$listpages[changes].publishDate|tiki_short_datetime} </td> <td class="text"> {$listpages[changes].data|escape:'html'|nl2br} </td> <td class="action"> <a class="link" href="tiki-edit_programmed_content.php?offset={$offset}&sort_mode={$sort_mode}&contentId={$contentId}&edit={$listpages[changes].pId}" title="{tr}Edit{/tr}">{icon _id=page_edit}</a> <a class="link" href="tiki-edit_programmed_content.php?offset={$offset}&sort_mode={$sort_mode}&contentId={$contentId}&remove={$listpages[changes].pId}" title="{tr}Remove{/tr}">{icon _id=cross alt="{tr}Remove{/tr}"}</a> </td> </tr> {sectionelse} {norecords _colspan=4} {/section} </table> {pagination_links cant=$cant step=$prefs.maxRecords offset=$offset}{/pagination_links}