123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php defined('IN_ADMIN') or exit('No permission resources.');?>
- <?php include $this->admin_tpl('header','admin');?>
- <script type="text/javascript">
- <!--
- $(function(){
- $.formValidator.initConfig({autotip:true,formid:"myform"});
- $("#field").formValidator({onshow:"<?php echo L('input').L('fieldname')?>",onfocus:"<?php echo L('fieldname').L('between_1_to_20')?>"}).regexValidator({regexp:"^[a-zA-Z]{1}([a-zA-Z0-9]|[_]){0,19}$",onerror:"<?php echo L('filedname_incorrect')?>"}).inputValidator({min:1,max:20,onerror:"<?php echo L('fieldname').L('between_1_to_20')?>"}).ajaxValidator({
- type : "get",
- url : "",
- data : "m=member&c=member_modelfield&a=public_checkfield&modelid=<?php echo $modelid?>&oldfield=<?php echo $field;?>",
- datatype : "html",
- cached:false,
- async:'true',
- success : function(data){
- if( data == "1" )
- {
- return true;
- }
- else
- {
- return false;
- }
- },
- buttons: $("#dosubmit"),
- onerror : "<?php echo L('fieldname').L('already_exist')?>",
- onwait : "<?php echo L('connecting_please_wait')?>"
- }).defaultPassed();
- $("#formtype").formValidator({onshow:"<?php echo L('filedtype_need')?>",onfocus:"<?php echo L('filedtype_need')?>",oncorrect:"<?php echo L('input_correct')?>",defaultvalue:""}).inputValidator({min:1,onerror: "<?php echo L('filedtype_need')?>"});
- $("#name").formValidator({onshow:"<?php echo L('filed_nickname_need')?>",onfocus:"<?php echo L('filed_nickname_need')?>",oncorrect:"<?php echo L('input_correct')?>"}).inputValidator({min:1,onerror:"<?php echo L('filed_nickname_need')?>"});
- })
- //-->
- </script>
- <div class="pad-10">
- <div class="common-form">
- <form name="myform" id="myform" action="?m=member&c=member_modelfield&a=edit" method="post">
- <input name="info[modelid]" type="hidden" value="<?php echo $modelid?>">
- <input name="fieldid" type="hidden" value="<?php echo $fieldid?>">
- <input name="oldfield" type="hidden" value="<?php echo $field?>">
- <fieldset>
- <legend><?php echo L('basic_configuration')?></legend>
- <table width="100%" class="table_form contentWrap">
- <tr>
- <th><strong><?php echo L('filedtype')?></strong><br /></th>
- <td>
- <input type="hidden" name="info[formtype]" value="<?php echo $formtype;?>">
- <?php echo form::select($fields,$formtype,'name="info[formtype]" id="formtype" onchange="javascript:field_setting(this.value);" disabled',L('filedtype_need'));?>
- </td>
- </tr>
- <tr>
- <th><strong><?php echo L('main_table_filed')?></strong></th>
- <td>
- <input type="hidden" name="issystem" id="issystem" value="<?php echo $issystem ? 1 : 0;?>">
- <input type="radio" name="info[issystem]" id="field_basic_table1" value="1" <?php if($issystem) echo 'checked';?> disabled> <?php echo L('yes')?> <input type="radio" id="field_basic_table0" name="info[issystem]" value="0" <?php if(!$issystem) echo 'checked';?> disabled> <?php echo L('no')?></td>
- </tr>
- <tr>
- <th width="25%"><font color="red">*</font> <strong><?php echo L('filedname')?></strong><br />
- <?php echo L('username_rule')?>
- </th>
- <td><input type="text" name="info[field]" id="field" size="20" class="input-text" value="<?php echo $field?>"></td>
- </tr>
- <tr>
- <th><font color="red">*</font> <strong><?php echo L('filed_nickname')?></strong><br /><?php echo L('exaple_title')?></th>
- <td><input type="text" name="info[name]" id="name" size="30" class="input-text" value="<?php echo $name?>"></td>
- </tr>
- <tr>
- <th><strong><?php echo L('field_cue')?></strong><br /><?php echo L('nickname_alert')?></th>
- <td><textarea name="info[tips]" rows="2" cols="20" id="tips" style="height:40px; width:80%"><?php echo new_html_special_chars($tips)?></textarea></td>
- </tr>
- <tr>
- <th><strong><?php echo L('correlation_param')?></strong><br /><?php echo L('correlation_attribute')?></th>
- <td><?php echo $form_data;?></td>
- </tr>
- <tr>
- <th><strong><?php echo L('extra_attribute')?></strong><br /><?php echo L('add_javascript')?></th>
- <td><input type="text" name="info[formattribute]" size="50" class="input-text" value="<?php echo new_html_special_chars($formattribute);?>"></td>
- </tr>
- <tr>
- <th><strong><?php echo L('form_css')?></strong><br /><?php echo L('user_form_css')?></th>
- <td><input type="text" name="info[css]" size="10" class="input-text" value="<?php echo new_html_special_chars($css);?>"></td>
- </tr>
- <tr>
- <th><strong><?php echo L('string_len_range')?></strong><br /><?php echo L('post_alert')?></th>
- <td><?php echo L('min')?><input type="text" name="info[minlength]" id="field_minlength" value="<?php echo $minlength;?>" size="5" class="input-text"> <?php echo L('max')?><input type="text" name="info[maxlength]" id="field_maxlength" value="<?php echo $maxlength;?>" size="5" class="input-text"></td>
- </tr>
- <tr>
- <th><strong><?php echo L('date_regular')?></strong><br /><?php echo L('validity_alert')?></th>
- <td><input type="text" name="info[pattern]" id="pattern" value="<?php echo $pattern;?>" size="40" class="input-text">
- <select name="pattern_select" onchange="javascript:$('#pattern').val(this.value)">
- <option value=""><?php echo L('common_regular')?></option>
- <option value="/^[0-9.-]+$/"><?php echo L('number')?></option>
- <option value="/^[0-9-]+$/"><?php echo L('int')?></option>
- <option value="/^[a-z]+$/i"><?php echo L('alphabet')?></option>
- <option value="/^[0-9a-z]+$/i"><?php echo L('alphabet')?>+<?php echo L('number')?></option>
- <option value="/^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/">E-mail</option>
- <option value="/^[0-9]{5,20}$/">QQ</option>
- <option value="/^http:\/\//"><?php echo L('http')?></option>
- <option value="/^(1)[0-9]{10}$/"><?php echo L('mp')?></option>
- <option value="/^[0-9-]{6,13}$/"><?php echo L('tel')?></option>
- <option value="/^[0-9]{6}$/"><?php echo L('postcode')?></option>
- </select>
- </td>
- </tr>
- <tr>
- <th><strong><?php echo L('error_alert')?></strong><br /><?php echo L('form_error_alert')?></th>
- <td><input type="text" name="info[errortips]" value="<?php echo $errortips;?>" size="50" class="input-text"></td>
- </tr>
- <tr>
- <th><strong><?php echo L('unique')?></strong></th>
- <td><input type="radio" name="info[isunique]" value="1" id="field_allow_isunique1" <?php if($isunique) echo 'checked';?>><?php echo L('yes')?><input type="radio" name="info[isunique]" value="0" id="field_allow_isunique0" <?php if(!$isunique) echo 'checked';?>><?php echo L('no')?></td>
- </tr>
- <tr>
- <th><strong><?php echo L('can_empty')?></strong></th>
- <td><input type="radio" name="info[isbase]" value="1" <?php if($isbase) echo 'checked';?>><?php echo L('yes')?><input type="radio" name="info[isbase]" value="0" <?php if(!$isbase) echo 'checked';?>><?php echo L('no')?> </td>
- </tr>
- <tr>
- <th><strong><?php echo L('search_condition')?></strong></th>
- <td><input type="radio" name="info[issearch]" value="1" id="field_allow_search1" <?php if($issearch) echo 'checked';?>><?php echo L('yes')?><input type="radio" name="info[issearch]" value="0" id="field_allow_search0" <?php if(!$issearch) echo 'checked';?>><?php echo L('no')?></td>
- </tr>
- <tr>
- <th><strong><?php echo L('isadd_condition')?></strong></th>
- <td><input type="radio" name="info[isadd]" value="1" <?php if($isadd) echo 'checked';?>><?php echo L('yes')?><input type="radio" name="info[isadd]" value="0" <?php if(!$isadd) echo 'checked';?>><?php echo L('no')?></td>
- </tr>
- <tr>
- <th><strong><?php echo L('isomnipotent_condition')?></strong></th>
- <td><input type="radio" name="info[isomnipotent]" value="1" <?php if($isomnipotent) echo 'checked';?>><?php echo L('yes')?><input type="radio" name="info[isomnipotent]" value="0" <?php if(!$isomnipotent) echo 'checked';?>><?php echo L('no')?></td>
- </tr>
- <tr>
- <th><strong><?php echo L('deny_set_field_group')?></strong></th>
- <td><?php echo form::checkbox($grouplist,$unsetgroupids,'name="unsetgroupids[]" id="unsetgroupids"',0,'100');?></td>
- </tr>
- <tr>
- <th><strong><?php echo L('deny_set_field_role')?></strong></th>
- <td><?php echo form::checkbox($roles,$unsetroleids,'name="unsetroleids[]" id="unsetroleids"',0,'100');?> </td>
- </tr>
- </table>
- </fieldset>
- <div class="bk15"></div>
- <input name="dosubmit" type="submit" id="dosubmit" value="<?php echo L('submit')?>" class="dialog">
- </form>
- </div>
- </div>
- </body>
- </html>
|