#423 업로드 폼 아래에 이미지 제한 크기 표시

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4122 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-04-20 13:04:31 +00:00
parent 938c8830fd
commit fb08c61fce
3 changed files with 17 additions and 7 deletions

View file

@ -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');

View file

@ -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-->

View file

@ -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>