source: extensions/event_cats/admin/template/autolog_new.tpl @ 4157

Last change on this file since 4157 was 4157, checked in by LucMorizur, 14 years ago

[Event Cats] Tabs management improvement ; check code and user already exists in JS ; improve outdated action

File size: 15.0 KB
Line 
1{* <!-- Event Cats (event categories) LucMorizur June - ... 2009 --> *}
2
3{include file='../../../plugins/event_cats/admin/template/header.inc.tpl'}
4
5{* <!-- Whether plugin Additionnal Pages is active or not --> *}
6<div style = "text-align:right; font-style:italic;">
7  {if $ec_ap_ok}
8    {'ec_plugin_ap_ok'|@translate}
9    <script type = "text/javascript"><!--
10      var ec_ap_ok = true; //-->
11    </script>
12  {else}
13    {'ec_plugin_ap_nok'|@translate}
14    <script type = "text/javascript"><!--
15      var ec_ap_ok = false; //-->
16    </script>
17  {/if}
18</div>
19
20{* <!-- Parameters list --> *}
21<form class = "filter" method = "post" name = "ec_new_code" action = "" onsubmit = "return ec_check_submit();">
22  <input type = "hidden" id = "ec_act1_id" name = "ec_act1" />
23  <input type = "hidden" id = "ec_act2_id" name = "ec_entry_sel" />
24 
25  {* <!-- Page title. Can be "New entry" or "Entry modification" --> *}
26  <div style = "text-align:center;">
27    <a style = "font-weight:bold; font-size:120%;" href = "#ec_top" name = "ec_top" title = "{'ec_top_title'|@translate}">
28      <label>
29        {if $ec_is_creation}
30          {'ec_new_entry_title'|@translate}
31        {else}
32          {'ec_modify_entry_title'|@translate}
33        {/if}
34      </label>
35    </a>
36    {if $ec_is_creation}
37      <br><br>
38      <input class = "submit" type = "button" name = "ec_submit_gen_full_auto" value = "{'ec_new_full_auto'|@translate}"
39       id = "ec_submit_gen_full_auto_id" onclick = "ec_gen_full_auto();" style = "margin-top:0;"/>
40    {/if}
41  </div><br>
42 
43  {* <!-- Table (borders not visible) with 3 rows for parameters adjustment --> *}
44  <table style = "border-spacing:15px" width = "97%">
45   
46    <tr>
47     
48      {* <!-- [ [New / existing code] / [Existing entry] ] selection --> *}
49      <td style = "vertical-align:top; font-weight:bold;">
50        {if $ec_is_creation}
51          {'ec_new_entry'|@translate}
52        {else}
53          {'ec_sel_entry'|@translate}
54        {/if}
55      </td>
56      <td>
57        {if $ec_is_creation}
58          <li>
59            {* <!-- New code (to create) --> *}
60            <label for = "ec_in_up_code_id" onclick = "ec_mark_code('ec_sel_code_new');" {$ec_hidden_when_no_code} >
61              <input type = "radio" name = "ec_sel_code" for = "ec_in_up_code_id" value = "new" id = "ec_sel_code_new"/>
62              {'ec_up_code_lbl_code_new'|@translate}
63            </label>
64            <span {$ec_hidden_when_no_code} >&nbsp;</span>
65            <label for = "ec_in_up_code_id" style = "margin:0;">
66              <input class = "submit" type = "button" name = "ec_submit_gen_code" value = "{'ec_new_entry_button'|@translate}"
67               id = "ec_submit_gen_code_id" onclick = "ec_gen_code();" style = "margin:0;"
68              />
69            </label>
70            {'ec_gen_code_nb_pre'|@translate}
71            <select name = "ec_in_up_auto_code_length" id = "ec_in_up_auto_code_length_id" onchange = "ec_auto_code_digits_nb = this.value;">
72              <option value =  "4" >4{'ec_gen_code_nb_min'|@translate}</option>
73              <option value =  "5" >5</option>
74              <option value =  "8" >8</option>
75              <option value = "10">10</option>
76              <option value = "12">12</option>
77              <option value = "15">15</option>
78              <option value = "16">16</option>
79              <option value = "20">20</option>
80              <option value = "24">24</option>
81              <option value = "25">25</option>
82              <option value = "30">30</option>
83              <option value = "32">32{'ec_gen_code_nb_max'|@translate}</option>
84            </select>
85            {'ec_gen_code_nb_end'|@translate}<br>
86            <ul><li>
87              <input type = "text" name = "ec_in_up_code" maxlength = "32" size = "40"
88               id = "ec_in_up_code_id" onblur = "ec_check_code_text(this.value);"
89              />
90            </li></ul>
91          </li>
92         
93          <li>
94            {* <!-- Known code --> *}
95            <label for = "ec_in_up_code_list_id" onclick = "ec_mark_code('ec_sel_code_old');" {$ec_hidden_when_no_code}>
96              <input type = "radio" name = "ec_sel_code" for = "ec_in_up_code_list_id" {$ec_hidden_when_no_code} value = "old" id = "ec_sel_code_old" />
97              {'ec_up_code_lbl_code_old'|@translate}
98            </label>
99            <select name = "ec_in_up_code_list" id = "ec_in_up_code_list_id" onchange = "ec_change_code_list(this.value);" {$ec_hidden_when_no_code} >
100              {foreach from=$ec_lists.duplicable_codes.codes key=ec_key item=ec_val}
101                <option value = "{$ec_val.id}">{$ec_key}</option>
102              {/foreach}
103            </select><br>
104          </li>
105         
106        {else}
107         
108          {* <!-- Existing entry selection --> *}
109          <li>
110            {* <!-- Entry choice --> *}
111            <select name = "ec_in_up_entry_list" id = "ec_in_up_entry_list_id" onchange = "ec_mark_entry(this.value);">
112              {foreach from=$ec_lists.ec_table item=ec_val}
113                <option value = "{$ec_val.id}">{$ec_val.id} : {$ec_val.code}</option>
114              {/foreach}
115            </select>
116          </li>
117         
118        {/if}
119      </td>
120    </tr>
121   
122    {* <!-- User to identify --> *}
123    <tr>
124      <td style = "vertical-align:top; font-weight:bold;">{'ec_up_code_lbl_user'|@translate}</td>
125      <td>
126        {if !$ec_is_creation}
127          <li>
128            {* <!-- None --> *}
129            <label onclick = "return ec_mark_user('ec_sel_user_none');">
130              <input type = "radio" name = "ec_sel_user" value = "none" id = "ec_sel_user_none" />
131              {'ec_up_code_lbl_user_none'|@translate}
132            </label><br>
133          </li>
134        {/if}
135       
136        <li>
137          {* <!-- New user (to create) --> *}
138          <label for = "ec_in_up_usr_txt_id" onclick = "return ec_mark_user('ec_sel_user_new');" {$ec_hidden_when_no_user} >
139            <input type = "radio" name = "ec_sel_user" for = "ec_in_up_usr_txt_id" value = "new" id = "ec_sel_user_new" {$ec_hidden_when_no_user} />
140            {'ec_up_code_lbl_user_new'|@translate}
141          </label>
142          <span {$ec_hidden_when_no_user} >&nbsp;</span>
143          <label for = "ec_in_up_usr_txt_id" style = "margin:0;">
144            <input class = "submit" type = "button" name = "ec_submit_gen_user" value = "{'ec_up_code_lbl_gen_user'|@translate}"
145             id = "ec_submit_gen_user_id" onclick = "ec_gen_user();"
146            />
147          </label><br>
148          <ul><li>
149            <label class = "ec_block" onclick = "return ec_mark_user('ec_sel_user_new');">{'ec_new_user_name'|@translate}<br>
150              <input type = "text" name = "ec_in_up_usr_txt" id = "ec_in_up_usr_txt_id" maxlength = "32"
151               size = "20" onblur = "ec_new_user_text = this.value; ec_check_user_text();"
152              />
153            </label>
154            <label class = "ec_block" onclick = "return ec_mark_user('ec_sel_user_new');">{'ec_new_user_pswd'|@translate}<br>
155              <input type = "text" name = "ec_in_up_psd_txt" id = "ec_in_up_psd_txt_id" maxlength = "32"
156               size = "20" onblur = "ec_new_psd_text = this.value; ec_check_pwd_text();"
157              />
158            </label>
159            <label class = "ec_block" onclick = "ec_check_grp_text(); return ec_mark_user('ec_sel_user_new');" for = "ec_in_up_grp_txt_id">
160              <input type = "checkbox" name = "ec_in_up_newgroup" id = "ec_in_up_newgroup_id"
161               onchange = "ec_selected_old_group = (this.checked != '');"
162              />
163              <span onMouseover = "ec_chk_over_grp = true;" onMouseout = "ec_chk_over_grp = false;">
164                {'ec_new_user_group'|@translate}
165              </span><br>
166              <input type = "text" name = "ec_in_up_grp_txt" id = "ec_in_up_grp_txt_id" maxlength = "32"
167               size = "20" onblur = "ec_new_grp_text = this.value; if (this.value != '') ec_selected_old_group = true;"
168              />
169            </label>
170            <label class = "ec_block"><span style = "font-weight:bold; color:red;" id = "ec_in_up_pwd_warn1">&nbsp;</span><br>
171              <span style = "font-weight:bold; color:red;" id = "ec_in_up_pwd_warn2">&nbsp;</span>
172            </label>
173          </li></ul><br>
174        </li>
175       
176        <li>
177          {* <!-- Known user --> *}
178          <label for = "ec_in_up_usr_list_id" onclick = "return ec_mark_user('ec_sel_user_old');" {$ec_hidden_when_no_user} >
179            <input type = "radio" name = "ec_sel_user" for = "ec_in_up_usr_list_id" {$ec_hidden_when_no_user} value = "old" id = "ec_sel_user_old" />
180            {'ec_up_code_lbl_user_old'|@translate}
181          </label>
182          <select name = "ec_in_up_usr_list" id = "ec_in_up_usr_list_id" onchange = "ec_change_user_list(this.value);" {$ec_hidden_when_no_user} >
183            {foreach from=$ec_lists.user_ids key=ec_key item=ec_val}
184              <option label = "{$ec_val}" value = "{$ec_key}" >{$ec_val}</option>
185            {/foreach}
186          </select><br>
187        </li>
188      </td>
189    </tr>
190   
191    {* <!-- Page to display --> *}
192    <tr>
193      <td style = "vertical-align:top;">
194        <span style = "font-weight:bold;">{'ec_up_code_lbl_action'|@translate}</span><br>
195        <label class = "ec_block" for = "ec_in_up_forced_id" style = "margin-top:5px;" onclick = "ec_mark_forced();">
196          <input type = "checkbox" name = "ec_in_up_forced" id = "ec_in_up_forced_id">
197          <span id = "ec_style_forced_id">&nbsp;</span>
198        </label>
199      </td>
200      <td>
201       
202        {* <!-- Additionnal Page, provided the plugin is activated and at least one Add. P. is available --> *}
203        <label class = "ec_block" for = "ec_in_up_aps_id" onclick = "return ec_mark_action('ec_input_action_add_p');"
204         {if !$ec_ap_ok or count($ec_lists.add_pages) == 0} style = "display:none;" {/if}
205        >
206          <input type = "radio" name = "ec_input_action" value = "add_p" id = "ec_input_action_add_p" for = "ec_in_up_aps_id" />
207          {'ec_up_code_lbl_aps'|@translate}<br>
208          <select class = "categoryList" name = "ec_in_up_aps" size="30" id = "ec_in_up_aps_id" onchange = "ec_selected_AP = this.value;" >
209            {html_options options=$ec_lists.add_pages}
210          </select>
211        </label>
212       
213        {* <!-- Category, provided at least one category is available --> *}
214        <label class = "ec_block" for = "ec_in_up_cats_id" onclick = "return ec_mark_action('ec_input_action_cat');"
215         {if count($ec_lists.categories) == 0} style = "display:none;" {/if}
216        >
217          <input type = "radio" name = "ec_input_action" value = "cat" id = "ec_input_action_cat" for = "ec_in_up_cats_id"
218            onMouseover = "ec_chk_nover_cat = false;" onMouseout = "ec_chk_nover_cat = true;"
219          />
220          <span onMouseover = "ec_chk_nover_cat = false;" onMouseout = "ec_chk_nover_cat = true;">{'ec_up_code_lbl_cats'|@translate}</span><br>
221          <select class = "categoryList" name = "ec_in_up_cat" size = "30" id = "ec_in_up_cats_id" onchange = "ec_selected_cat = this.value;">
222            {html_options options=$ec_lists.categories}
223          </select>
224        </label>
225       
226        {* <!-- Image, provided at least one category is available and at least one image is associated to one category --> *}
227        <label class = "ec_block" for = "ec_in_up_imgs_id" onclick = "return ec_mark_action('ec_input_action_img');"
228         {if $ec_no_assoc or count($ec_lists.categories) == 0} style = "display:none;" {/if}
229        >
230          <input type = "radio" name = "ec_input_action" value = "img" id = "ec_input_action_img" for = "ec_in_up_imgs_id" />
231          {'ec_up_code_lbl_img'|@translate}<br>
232          <input type = "text" name = "ec_in_up_img" id = "ec_in_up_imgs_id" maxlength = "6"
233           size = "10" onblur = "ec_selected_img = this.value; ec_check_img_text();" onfocus = "return ec_mark_action('ec_input_action_img');"
234          /><br>
235          <span id = "ec_in_up_imgs_warn"></span>
236        </label>
237       
238        {* <!-- Index page --> *}
239        <label class = "ec_block" onclick = "return ec_mark_action('ec_input_action_home');">
240          <input type = "radio" name = "ec_input_action" value = "home" id = "ec_input_action_home" />
241          {'ec_up_code_lbl_home'|@translate}
242        </label>
243       
244        {* <!-- Access denied page (only when modifying an entry) --> *}
245        {if !$ec_is_creation}
246          <label class = "ec_block" onclick = "return ec_mark_action('ec_input_action_refused');">
247            <input type = "radio" name = "ec_input_action" value = "refused" id = "ec_input_action_refused" />
248            {'ec_up_code_lbl_refused'|@translate}
249          </label>
250        {/if}
251      </td>
252    </tr>
253  </table>
254  <p>
255    <input class = "submit" type = "submit" value = "{'Submit'|@translate}"/>
256    <input class = "submit" type = "submit" value = "{'Reset'|@translate}" onclick = "return ec_init();"/>
257  </p>
258</form>
259
260{* <!-- JavaScript functions --> *}
261<script type = "text/javascript" src = "{$RACINE_URL}{$EVNTCATS_PATH}admin/template/autolog_new.js"></script>
262<script type = "text/javascript"><!--
263  ec_is_creation                          = {if $ec_is_creation}true{else}false{/if};
264  ec_up_code_lbl_forced_txt               = "{'ec_up_code_lbl_forced'|@translate}";
265  ec_JS_message['ec_gen_user_act_miss']   = "{'ec_gen_user_act_miss'|@translate|@escape:javascript}";
266  ec_JS_message['ec_act_cat_miss']        = "{'ec_act_cat_miss'|@translate|@escape:javascript}";
267  ec_JS_message['ec_act_img_miss']        = "{'ec_act_img_miss'|@translate|@escape:javascript}";
268  ec_JS_message['ec_new_pwd_gen1']        = "{'ec_new_pwd_gen1'|@translate|@escape:javascript}";
269  ec_JS_message['ec_new_pwd_gen2']        = "{'ec_new_pwd_gen2'|@translate|@escape:javascript}";
270  ec_JS_message['ec_act_entry_miss']      = "{'ec_act_entry_miss'|@translate|@escape:javascript}";
271  ec_JS_message['ec_confirm_del_other']   = "{'ec_confirm_del_other'|@translate|@escape:javascript}";
272  ec_JS_message['ec_user_already_exists'] = "{'ec_user_already_exists'|@translate|@escape:javascript}";
273  ec_JS_message['ec_code_already_exists'] = "{'ec_code_already_exists'|@translate|@escape:javascript}";
274  ec_JS_message['ec_up_code_lbl_home']    = "{'ec_up_code_lbl_home'|@translate}";
275  ec_JS_message['ec_submit_code_miss']    = "{'ec_submit_code_miss'|@translate}";
276  ec_JS_message['ec_submit_user_miss']    = "{'ec_submit_user_miss'|@translate}";
277  ec_JS_message['ec_submit_action_miss']  = "{'ec_submit_action_miss'|@translate}";
278  ec_JS_message['ec_submit_code_bad']     = "{'ec_submit_code_bad'|@translate}";
279  ec_default_action                       = "{$ec_default_action}";
280  ec_default_entry                        = "{$ec_default_entry}";
281  ec_auto_code_digits_nb                  = "{$ec_def_auto_code_dg_nb}";
282  {if $ec_is_creation}
283    {foreach from=$ec_lists.duplicable_codes.ids key=ec_key item=ec_val}
284      ec_duplic_codes[{$ec_key}] = {$ec_val};
285    {/foreach}
286  {/if}
287  {foreach from=$ec_lists.ec_table item=ec_val name=listloop}
288    ec_lists_temp[{$smarty.foreach.listloop.index}] = "{$ec_val.id};{$ec_val.user_id};{$ec_val.action};{$ec_val.arg1};{$ec_val.arg2};{$ec_val.forced}";
289  {/foreach}
290  ec_build_ec_lists();
291  ec_init();
292//--></script>
293
294{include file='../../../plugins/event_cats/admin/template/footer.inc.tpl'}
295
296{* <!--
297--> *}
Note: See TracBrowser for help on using the repository browser.