mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 15:19:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1828 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
5d31f4cba5
commit
3eaea3f33a
106 changed files with 351 additions and 253 deletions
|
|
@ -81,7 +81,7 @@
|
|||
<tr>
|
||||
<th scope="row">{$lang->allow_mailing}</th>
|
||||
<td>
|
||||
<input type="checkbox" name="allow_mailing" value="Y" <!--@if($member_info->allow_mailing!='N')-->checked="true"<!--@end-->/>
|
||||
<input type="checkbox" name="allow_mailing" value="Y" <!--@if($member_info->allow_mailing!='N')-->checked="checked"<!--@end-->/>
|
||||
{$lang->about_allow_mailing}
|
||||
</td>
|
||||
</tr>
|
||||
|
|
@ -90,7 +90,7 @@
|
|||
<td>
|
||||
<select name="allow_message">
|
||||
<!--@foreach($lang->allow_message_type as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($member_info->allow_message == $key)-->selected="true"<!--@end-->>{$val}</option>
|
||||
<option value="{$key}" <!--@if($member_info->allow_message == $key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<p>{$lang->about_allow_message}</p>
|
||||
|
|
@ -105,7 +105,7 @@
|
|||
<tr>
|
||||
<th scope="row">{$lang->denied}</th>
|
||||
<td>
|
||||
<input type="checkbox" name="denied" value="Y" <!--@if($member_info->denied=='Y')-->checked="true"<!--@end-->/>
|
||||
<input type="checkbox" name="denied" value="Y" <!--@if($member_info->denied=='Y')-->checked="checked"<!--@end-->/>
|
||||
<p>{$lang->about_denied}</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
@ -123,7 +123,7 @@
|
|||
<tr>
|
||||
<th scope="row">{$lang->is_admin}</th>
|
||||
<td>
|
||||
<input type="checkbox" name="is_admin" value="Y" <!--@if($member_info->is_admin=='Y')-->checked="true"<!--@end-->/>
|
||||
<input type="checkbox" name="is_admin" value="Y" <!--@if($member_info->is_admin=='Y')-->checked="checked"<!--@end-->/>
|
||||
<p>{$lang->about_is_admin}</p>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
@ -138,7 +138,7 @@
|
|||
<th scope="row">{$lang->group}</th>
|
||||
<td>
|
||||
<!--@foreach($group_list as $key=>$val)-->
|
||||
<input type="checkbox" name="group_srl_list" value="{$key}" id="group_{$key}" <!--@if($member_info->group_list[$key])-->checked="true"<!--@end--> class="checkbox" />
|
||||
<input type="checkbox" name="group_srl_list" value="{$key}" id="group_{$key}" <!--@if($member_info->group_list[$key])-->checked="checked"<!--@end--> class="checkbox" />
|
||||
<label for="group_{$key}">{$val->title}</label>
|
||||
<!--@end-->
|
||||
<p>{$lang->about_group}</p>
|
||||
|
|
@ -190,7 +190,7 @@
|
|||
<!--@elseif($val->column_type == 'checkbox')-->
|
||||
<!--@if($val->default_value)-->
|
||||
<!--@foreach($val->default_value as $v)-->
|
||||
<input type="checkbox" name="{$val->column_name}" value="{htmlspecialchars($v)}" <!--@if(is_array($val->value)&&in_array($v, $val->value))-->checked="true"<!--@end-->/> {$v}
|
||||
<input type="checkbox" name="{$val->column_name}" value="{htmlspecialchars($v)}" <!--@if(is_array($val->value)&&in_array($v, $val->value))-->checked="checked"<!--@end-->/> {$v}
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
|
||||
|
|
@ -199,7 +199,7 @@
|
|||
<select name="{$val->column_name}">
|
||||
<!--@if($val->default_value)-->
|
||||
<!--@foreach($val->default_value as $v)-->
|
||||
<option value="{$v}" <!--@if($v == $val->value)-->selected="true"<!--@end-->>{$v}</option>
|
||||
<option value="{$v}" <!--@if($v == $val->value)-->selected="selected"<!--@end-->>{$v}</option>
|
||||
<!--@end-->
|
||||
<!--@end-->
|
||||
</select>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue