[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <script type="text/javascript"> 2 // <![CDATA[ 3 4 var form_name = 'user_signature'; 5 var text_name = 'signature'; 6 7 // Define the bbCode tags 8 var bbcode = new Array(); 9 var bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list]','[/list]','[list=]','[/list]','[img]','[/img]','[url]','[/url]','[flash=]', '[/flash]','[size=]','[/size]'<!-- BEGIN custom_tags -->, {custom_tags.BBCODE_NAME}<!-- END custom_tags -->); 10 var imageTag = false; 11 12 // Helpline messages 13 var help_line = { 14 b: '{LA_BBCODE_B_HELP}', 15 i: '{LA_BBCODE_I_HELP}', 16 u: '{LA_BBCODE_U_HELP}', 17 q: '{LA_BBCODE_Q_HELP}', 18 c: '{LA_BBCODE_C_HELP}', 19 l: '{LA_BBCODE_L_HELP}', 20 o: '{LA_BBCODE_O_HELP}', 21 p: '{LA_BBCODE_P_HELP}', 22 w: '{LA_BBCODE_W_HELP}', 23 s: '{LA_BBCODE_S_HELP}', 24 f: '{LA_BBCODE_F_HELP}', 25 y: '{LA_BBCODE_Y_HELP}', 26 d: '{LA_BBCODE_D_HELP}', 27 tip: '{L_STYLES_TIP}' 28 <!-- BEGIN custom_tags --> 29 ,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}' 30 <!-- END custom_tags --> 31 } 32 33 // ]]> 34 </script> 35 <script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script> 36 37 <form id="user_signature" method="post" action="{U_ACTION}"> 38 39 <!-- IF SIGNATURE_PREVIEW --> 40 <fieldset> 41 <legend>{L_ADMIN_SIG_PREVIEW}</legend> 42 <p>{SIGNATURE_PREVIEW}</p> 43 </fieldset> 44 <!-- ENDIF --> 45 46 <fieldset> 47 <legend>{L_SIGNATURE}</legend> 48 <p>{L_SIGNATURE_EXPLAIN}</p> 49 50 <div id="format-buttons"> 51 <input type="button" class="button2" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px;" onclick="bbstyle(0)" onmouseover="helpline('b')" onmouseout="helpline('tip')" /> 52 <input type="button" class="button2" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px;" onclick="bbstyle(2)" onmouseover="helpline('i')" onmouseout="helpline('tip')" /> 53 <input type="button" class="button2" accesskey="u" name="addbbcode4" value=" u " style="text-decoration: underline; width: 30px;" onclick="bbstyle(4)" onmouseover="helpline('u')" onmouseout="helpline('tip')" /> 54 <input type="button" class="button2" accesskey="q" name="addbbcode6" value="Quote" style="width: 50px" onclick="bbstyle(6)" onmouseover="helpline('q')" onmouseout="helpline('tip')" /> 55 <input type="button" class="button2" accesskey="c" name="addbbcode8" value="Code" style="width: 40px" onclick="bbstyle(8)" onmouseover="helpline('c')" onmouseout="helpline('tip')" /> 56 <input type="button" class="button2" accesskey="l" name="addbbcode10" value="List" style="width: 40px" onclick="bbstyle(10)" onmouseover="helpline('l')" onmouseout="helpline('tip')" /> 57 <input type="button" class="button2" accesskey="o" name="addbbcode12" value="List=" style="width: 40px" onclick="bbstyle(12)" onmouseover="helpline('o')" onmouseout="helpline('tip')" /> 58 <input type="button" class="button2" accesskey="y" name="addlistitem" value="[*]" style="width: 40px" onclick="bbstyle(-1)" onmouseover="helpline('y')" onmouseout="helpline('tip')" /> 59 <!-- IF S_BBCODE_IMG --> 60 <input type="button" class="button2" accesskey="p" name="addbbcode14" value="Img" style="width: 40px" onclick="bbstyle(14)" onmouseover="helpline('p')" onmouseout="helpline('tip')" /> 61 <!-- ENDIF --> 62 <!-- IF S_LINKS_ALLOWED --> 63 <input type="button" class="button2" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onclick="bbstyle(16)" onmouseover="helpline('w')" onmouseout="helpline('tip')" /> 64 <!-- ENDIF --> 65 <!-- IF S_BBCODE_FLASH --> 66 <input type="button" class="button2" accesskey="d" name="addbbcode18" value="Flash" onclick="bbstyle(18)" onmouseover="helpline('d')" onmouseout="helpline('tip')" /> 67 <!-- ENDIF --> 68 69 {L_FONT_SIZE}: <select name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="{L_FONT_SIZE}" onmouseover="helpline('f')" onmouseout="helpline('tip')"> 70 <option value="50">{L_FONT_TINY}</option> 71 <option value="85">{L_FONT_SMALL}</option> 72 <option value="100" selected="selected">{L_FONT_NORMAL}</option> 73 <option value="150">{L_FONT_LARGE}</option> 74 <option value="200">{L_FONT_HUGE}</option> 75 </select> 76 <!-- IF .custom_tags --> 77 <br /><br /> 78 <!-- BEGIN custom_tags --> 79 <input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})"<!-- IF custom_tags.BBCODE_HELPLINE !== '' --> onmouseover="helpline('cb_{custom_tags.BBCODE_ID}')" onmouseout="helpline('tip')"<!-- ENDIF --> /> 80 <!-- END custom_tags --> 81 <!-- ENDIF --> 82 83 </div> 84 85 <p><input type="text" class="text full" style="border: 0; background: none;" name="helpbox" value="{L_STYLES_TIP}" /></p> 86 87 <dl> 88 <dt style="width: 90px;"> 89 <script type="text/javascript"> 90 // <![CDATA[ 91 colorPalette('v', 12, 10); 92 // ]]> 93 </script> 94 </dt> 95 <dd style="margin-{S_CONTENT_FLOW_BEGIN}: 90px;"><textarea name="signature" rows="10" cols="60" style="width: 95%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onfocus="initInsertions();">{SIGNATURE}</textarea></dd> 96 <dd style="margin-{S_CONTENT_FLOW_BEGIN}: 90px; margin-top: 5px;"> 97 <!-- IF S_BBCODE_ALLOWED --> 98 <label><input type="checkbox" class="radio" name="disable_bbcode"{S_BBCODE_CHECKED} /> {L_DISABLE_BBCODE}</label> 99 <!-- ENDIF --> 100 <!-- IF S_SMILIES_ALLOWED --> 101 <label><input type="checkbox" class="radio" name="disable_smilies"{S_SMILIES_CHECKED} /> {L_DISABLE_SMILIES}</label> 102 <!-- ENDIF --> 103 <!-- IF S_LINKS_ALLOWED --> 104 <label><input type="checkbox" class="radio" name="disable_magic_url"{S_MAGIC_URL_CHECKED} /> {L_DISABLE_MAGIC_URL}</label> 105 <!-- ENDIF --> 106 </dd> 107 <dd style="margin-{S_CONTENT_FLOW_BEGIN}: 90px; margin-top: 10px;"><strong>{L_OPTIONS}: </strong>{BBCODE_STATUS} :: {IMG_STATUS} :: {FLASH_STATUS} :: {URL_STATUS} :: {SMILIES_STATUS}</dd> 108 </dl> 109 </fieldset> 110 111 <fieldset class="submit-buttons"> 112 <input class="button1" type="submit" name="update" value="{L_SUBMIT}" /> 113 <input class="button2" type="submit" name="preview" value="{L_PREVIEW}" /> 114 {S_FORM_TOKEN} 115 </fieldset> 116 </form>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Oct 2 15:03:47 2013 | Cross-referenced by PHPXref 0.7.1 |