mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
#423 업로드 폼 아래에 이미지 제한 크기 표시
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4122 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
938c8830fd
commit
fb08c61fce
3 changed files with 17 additions and 7 deletions
|
|
@ -111,6 +111,10 @@
|
|||
function dispMemberAdminInfo() {
|
||||
// 추가 가입폼 목록을 받음
|
||||
$oMemberModel = &getModel('member');
|
||||
$oModuleModel = &getModel('module');
|
||||
$member_config = $oModuleModel->getModuleConfig('member');
|
||||
|
||||
Context::set('member_config', $member_config);
|
||||
Context::set('extend_form_list', $oMemberModel->getCombineJoinForm($this->member_info));
|
||||
|
||||
$this->setTemplateFile('member_info');
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@
|
|||
<div class="form"><input type="file" name="profile_image" value="" /></div>
|
||||
<a href="#" onclick="doUploadProfileImage();return false;" class="button"><span>{$lang->cmd_registration}</span></a>
|
||||
</div>
|
||||
<p>{$lang->profile_image_max_width} : {$member_config->profile_image_max_width}px, {$lang->profile_image_max_height} : {$member_config->profile_image_max_height}px</p>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
|
|
@ -87,6 +88,7 @@
|
|||
<div class="form"><input type="file" name="image_name" value="" /></div>
|
||||
<a href="#" onclick="doUploadImageName();return false;" class="button"><span>{$lang->cmd_registration}</span></a>
|
||||
</div>
|
||||
<p>{$lang->image_name_max_width} : {$member_config->image_name_max_width}px, {$lang->image_name_max_height} : {$member_config->image_name_max_height}px</p>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
|
|
@ -105,6 +107,7 @@
|
|||
<div class="form"><input type="file" name="image_mark" value="" /></div>
|
||||
<a href="#" onclick="doUploadImageMark();return false;" class="button"><span>{$lang->cmd_registration}</span></a>
|
||||
</div>
|
||||
<p>{$lang->image_mark_max_width} : {$member_config->image_mark_max_width}px, {$lang->image_mark_max_height} : {$member_config->image_mark_max_height}px</p>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
|
|
|
|||
|
|
@ -43,6 +43,7 @@
|
|||
<input type="file" name="profile_image" value="" />
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_submit}" /></span>
|
||||
</form>
|
||||
<p>{$lang->profile_image_max_width} : {$member_config->profile_image_max_width}px, {$lang->profile_image_max_height} : {$member_config->profile_image_max_height}px</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -65,6 +66,7 @@
|
|||
<input type="file" name="image_name" value="" />
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_submit}" /></span>
|
||||
</form>
|
||||
<p>{$lang->image_name_max_width} : {$member_config->image_name_max_width}px, {$lang->image_name_max_height} : {$member_config->image_name_max_height}px</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
@ -87,6 +89,7 @@
|
|||
<input type="file" name="image_mark" value="" />
|
||||
<span class="button"><input type="submit" value="{$lang->cmd_submit}" /></span>
|
||||
</form>
|
||||
<p>{$lang->image_mark_max_width} : {$member_config->image_mark_max_width}px, {$lang->image_mark_max_height} : {$member_config->image_mark_max_height}px</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue