mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-12 07:11:42 +09:00
프로필 사진 보기를 옵션을 선택할 수 있게 개선
This commit is contained in:
parent
7464357ef5
commit
0d7be7efe0
4 changed files with 16 additions and 3 deletions
|
|
@ -121,6 +121,7 @@ $lang->cmd_view_saved_document = '저장함 보기';
|
||||||
$lang->cmd_send_email = '메일 보내기';
|
$lang->cmd_send_email = '메일 보내기';
|
||||||
$lang->cmd_modify_nickname_log = '닉네임 변경 기록';
|
$lang->cmd_modify_nickname_log = '닉네임 변경 기록';
|
||||||
$lang->cmd_member_file_upload = '서명에 파일 첨부 사용';
|
$lang->cmd_member_file_upload = '서명에 파일 첨부 사용';
|
||||||
|
$lang->cmd_member_profile_view = '회원 프로필사진 보이기';
|
||||||
$lang->msg_email_not_exists = '이메일 주소가 존재하지 않습니다.';
|
$lang->msg_email_not_exists = '이메일 주소가 존재하지 않습니다.';
|
||||||
$lang->msg_alreay_scrapped = '이미 스크랩된 게시물입니다.';
|
$lang->msg_alreay_scrapped = '이미 스크랩된 게시물입니다.';
|
||||||
$lang->msg_cart_is_null = '대상을 선택해주세요.';
|
$lang->msg_cart_is_null = '대상을 선택해주세요.';
|
||||||
|
|
@ -228,6 +229,7 @@ $lang->about_reset_auth_mail = '현재등록된 이메일 주소는 %s입니다.
|
||||||
$lang->about_resend_auth_mail = '인증 메일을 받지 못한 경우 다시 받을 수 있습니다.';
|
$lang->about_resend_auth_mail = '인증 메일을 받지 못한 경우 다시 받을 수 있습니다.';
|
||||||
$lang->about_reset_auth_mail_submit = '이메일을 로그인 계정으로 사용할 경우 신규 메일주소로 로그인해야 합니다.';
|
$lang->about_reset_auth_mail_submit = '이메일을 로그인 계정으로 사용할 경우 신규 메일주소로 로그인해야 합니다.';
|
||||||
$lang->about_update_nickname_log = '닉네임 로그를 기록합니다. 이 옵션을 사용하게 되면, 닉네임변경이력을 남기도록 할 수 있습니다.';
|
$lang->about_update_nickname_log = '닉네임 로그를 기록합니다. 이 옵션을 사용하게 되면, 닉네임변경이력을 남기도록 할 수 있습니다.';
|
||||||
|
$lang->about_member_profile_view = '관리자 회원목록 페이지에서 프로필 이미지를 볼 수 있는 옵션입니다. 회원목록을 보기 원치 않을 경우에는 아니요를 선택하세요.';
|
||||||
$lang->no_article = '글이 없습니다.';
|
$lang->no_article = '글이 없습니다.';
|
||||||
$lang->find_account_question = '비밀번호 찾기 질문/답변';
|
$lang->find_account_question = '비밀번호 찾기 질문/답변';
|
||||||
$lang->find_account_answer = '비밀번호 찾기 답변';
|
$lang->find_account_answer = '비밀번호 찾기 답변';
|
||||||
|
|
|
||||||
|
|
@ -186,7 +186,8 @@ class memberAdminController extends member
|
||||||
'password_hashing_auto_upgrade',
|
'password_hashing_auto_upgrade',
|
||||||
'password_change_invalidate_other_sessions',
|
'password_change_invalidate_other_sessions',
|
||||||
'update_nickname_log',
|
'update_nickname_log',
|
||||||
'member_allow_fileupload'
|
'member_allow_fileupload',
|
||||||
|
'member_profile_view'
|
||||||
);
|
);
|
||||||
|
|
||||||
if(!array_key_exists($args->password_hashing_algorithm, Rhymix\Framework\Password::getSupportedAlgorithms()))
|
if(!array_key_exists($args->password_hashing_algorithm, Rhymix\Framework\Password::getSupportedAlgorithms()))
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,16 @@
|
||||||
<p class="x_help-block">{$lang->about_enable_confirm}</p>
|
<p class="x_help-block">{$lang->about_enable_confirm}</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="x_control-group">
|
||||||
|
<div class="x_control-label">{$lang->cmd_member_profile_view}</div>
|
||||||
|
<div class="x_controls">
|
||||||
|
<label class="x_inline" for="member_profile_view_yes"><input type="radio" name="member_profile_view" id="member_profile_view_yes" value="Y" checked="checked"|cond="$config->member_profile_view == 'Y'" /> {$lang->cmd_yes}</label>
|
||||||
|
<label class="x_inline" for="member_profile_view_no"><input type="radio" name="member_profile_view" id="member_profile_view_no" value="N" checked="checked"|cond="$config->member_profile_view != 'Y'"/> {$lang->cmd_no}</label>
|
||||||
|
<p class="x_help-block">{$lang->about_member_profile_view}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div class="x_control-group">
|
<div class="x_control-group">
|
||||||
<div class="x_control-label">{$lang->cmd_modify_nickname_log}</div>
|
<div class="x_control-label">{$lang->cmd_modify_nickname_log}</div>
|
||||||
<div class="x_controls">
|
<div class="x_controls">
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@
|
||||||
</caption>
|
</caption>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col" class="nowr" cond="$profileImageConfig == 'Y'">{$lang->profile_image}</th>
|
<th scope="col" class="nowr" cond="$profileImageConfig == 'Y' && $config->member_profile_view == 'Y'">{$lang->profile_image}</th>
|
||||||
<th scope="col" class="nowr">{$lang->email}</th>
|
<th scope="col" class="nowr">{$lang->email}</th>
|
||||||
<th scope="col" class="nowr" loop="$usedIdentifiers=>$name,$title">{$title}</th>
|
<th scope="col" class="nowr" loop="$usedIdentifiers=>$name,$title">{$title}</th>
|
||||||
<th scope="col" class="nowr">{$lang->status}</th>
|
<th scope="col" class="nowr">{$lang->status}</th>
|
||||||
|
|
@ -45,7 +45,7 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr loop="$member_list=>$no,$member_info">
|
<tr loop="$member_list=>$no,$member_info">
|
||||||
{@$member_info = get_object_vars($member_info)}
|
{@$member_info = get_object_vars($member_info)}
|
||||||
<td class="nowr" cond="$profileImageConfig == 'Y'">
|
<td class="nowr" cond="$profileImageConfig == 'Y' && $config->member_profile_view == 'Y'">
|
||||||
<!--@if($member_info['profile_image'])-->
|
<!--@if($member_info['profile_image'])-->
|
||||||
<img src="{$member_info['profile_image']->src}" class="profile_img" />
|
<img src="{$member_info['profile_image']->src}" class="profile_img" />
|
||||||
<!--@else-->
|
<!--@else-->
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue