golden hour
/home/phakp/public_html/formtools/modules/pages/templates
⬆️ Go Up
Upload
File/Folder
Size
Actions
add.tpl
5.72 KB
Del
OK
edit.tpl
6.64 KB
Del
OK
help.tpl
556 B
Del
OK
index.tpl
2.71 KB
Del
OK
page.tpl
380 B
Del
OK
settings.tpl
866 B
Del
OK
view.tpl
432 B
Del
OK
Edit: edit.tpl
{ft_include file='modules_header.tpl'} <a href="{$g_root_url}/modules/pages/view.php?page_id={$page_id}" style="float:right" title="{$L.phrase_view_page}"><img src="{$theme_url}/images/admin_view.png" border="0" /></a> <table cellpadding="0" cellspacing="0"> <tr> <td width="45"><a href="./"><img src="images/icon_pages.gif" border="0" width="34" height="34" /></a></td> <td class="title"> <a href="../../admin/modules">{$LANG.word_modules}</a> <span class="joiner">»</span> <a href="./">{$L.module_name}</a> <span class="joiner">»</span> {$L.phrase_edit_page} </td> </tr> </table> {ft_include file='messages.tpl'} <form action="edit.php" method="post" name="pages_form" onsubmit="return rsv.validate(this, rules)"> <input type="hidden" name="page_id" value="{$page_id}" /> <input type="hidden" name="use_wysiwyg_hidden" id="use_wysiwyg_hidden" value="" /> <input type="hidden" id="tinymce_available" value="{$tinymce_available}" /> <table cellspacing="1" cellpadding="1" border="0" width="100%"> <tr> <td width="140" valign="top">{$L.phrase_page_name}</td> <td> <input type="text" name="page_name" value="{$page_info.page_name|escape}" style="width:200px" maxlength="50" /> <div class="light_grey">{$L.text_page_name_desc}</div> </td> </tr> <tr> <td>{$L.phrase_page_heading}</td> <td><input type="text" name="heading" value="{$page_info.heading|escape}" style="width:100%" /></td> </tr> <tr> <td>Content type</td> <td> <input type="radio" name="content_type" value="html" id="ct1" {if $page_info.content_type == "html"}checked{/if} onclick="pages_ns.change_content_type(this.value)" /> <label for="ct1">HTML</label> <input type="radio" name="content_type" value="php" id="ct2" {if $page_info.content_type == "php"}checked{/if} onclick="pages_ns.change_content_type(this.value)" /> <label for="ct2">PHP</label> <input type="radio" name="content_type" value="smarty" id="ct3" {if $page_info.content_type == "smarty"}checked{/if} onclick="pages_ns.change_content_type(this.value)" /> <label for="ct3">Smarty</label> </td> </tr> <tr> <td valign="top">{$L.phrase_page_content}</td> <td> <div id="wysiwyg_div" {if $page_info.content_type != "html" || $page_info.use_wysiwyg == "no"}style="display:none"{/if}> <textarea name="wysiwyg_content" id="wysiwyg_content" style="width: 100%; height:300px">{$page_info.content}</textarea> </div> <!-- CodeMirror is used for everything except the WYSIWYG editor --> <div id="codemirror_div" {if $page_info.use_wysiwyg == "yes" && $page_info.content_type == "html"}style="display: none"{/if}> <div style="border: 1px solid #999999; padding: 3px"> <textarea name="codemirror_content" id="codemirror_content" style="width:520px; height:300px">{$page_info.content|escape}</textarea> </div> <script> var html_editor = new CodeMirror.fromTextArea(document.getElementById("codemirror_content"), {literal}{{/literal} mode: "xml" {literal}});{/literal} </script> </div> <div {if $tinymce_available == "no"}class="hidden"{/if}> <input type="checkbox" id="uwe" name="use_wysiwyg" {if $page_info.use_wysiwyg == "yes"}checked{/if} {if $page_info.content_type != "html"}disabled{/if} onchange="pages_ns.toggle_wysiwyg_field(this.checked)" /> <label for="uwe">Use WYSIWYG editor</label> </div> <br /> </td> </tr> <tr> <td valign="top">Who can access?</td> <td> <table cellspacing="1" cellpadding="0" > <tr> <td> <input type="radio" name="access_type" id="at1" value="admin" {if $page_info.access_type == 'admin'}checked{/if} onclick="pages_ns.toggle_access_type(this.value)" /> <label for="at1">{$LANG.phrase_admin_only}</label> </td> </tr> <tr> <td> <input type="radio" name="access_type" id="at2" value="public" {if $page_info.access_type == 'public'}checked{/if} onclick="pages_ns.toggle_access_type(this.value)" /> <label for="at2">{$LANG.word_public} <span class="light_grey">{$LANG.phrase_all_clients_have_access}</span></label> </td> </tr> <tr> <td> <input type="radio" name="access_type" id="at3" value="private" {if $page_info.access_type == 'private'}checked{/if} onclick="pages_ns.toggle_access_type(this.value)" /> <label for="at3">{$LANG.word_private} <span class="light_grey">{$LANG.phrase_only_specific_clients_have_access}</span></label> </td> </tr> </table> <div id="custom_clients" {if $page_info.access_type != 'private'}style="display:none"{/if} class="margin_top"> <table cellpadding="0" cellspacing="0" width="100%" class="list_table"> <tr> <td class="medium_grey">{$LANG.phrase_available_clients}</td> <td></td> <td class="medium_grey">{$LANG.phrase_selected_clients}</td> </tr> <tr> <td> {clients_dropdown name_id="available_client_ids[]" multiple="true" multiple_action="hide" clients=$page_info.clients size="4" style="width: 220px"} </td> <td align="center" valign="middle" width="100"> <input type="button" value="{$LANG.word_add_uc_rightarrow}" onclick="ft.move_options(this.form['available_client_ids[]'], this.form['selected_client_ids[]']);" /><br /> <input type="button" value="{$LANG.word_remove_uc_leftarrow}" onclick="ft.move_options(this.form['selected_client_ids[]'], this.form['available_client_ids[]']);" /> </td> <td> {clients_dropdown name_id="selected_client_ids[]" multiple="true" multiple_action="show" clients=$page_info.clients size="4" style="width: 220px"} </td> </tr> </table> </div> <div class="light_grey"> Note that pages still need to be assigned to a client via their menu or a hardcoded link in order to be seen. This setting is for security purposes only. </div> </td> </tr> </table> <p> <input type="submit" name="update_page" value="{$LANG.word_update|upper}" /> </p> </form> {ft_include file='modules_footer.tpl'}
Save