@@ 118-122 (lines=5) @@ | ||
115 | $this->setMessage($msg_code); |
|
116 | ||
117 | $profile_image = Context::get('profile_image'); |
|
118 | if(is_uploaded_file($profile_image['tmp_name'])) |
|
119 | { |
|
120 | $output = $oMemberController->insertProfileImage($args->member_srl, $profile_image['tmp_name']); |
|
121 | if(!$output->toBool()) return $output; |
|
122 | } |
|
123 | ||
124 | $image_mark = Context::get('image_mark'); |
|
125 | if(is_uploaded_file($image_mark['tmp_name'])) |
|
@@ 125-129 (lines=5) @@ | ||
122 | } |
|
123 | ||
124 | $image_mark = Context::get('image_mark'); |
|
125 | if(is_uploaded_file($image_mark['tmp_name'])) |
|
126 | { |
|
127 | $output = $oMemberController->insertImageMark($args->member_srl, $image_mark['tmp_name']); |
|
128 | if(!$output->toBool()) return $output; |
|
129 | } |
|
130 | ||
131 | $image_name = Context::get('image_name'); |
|
132 | if (is_uploaded_file($image_name['tmp_name'])) |
|
@@ 132-136 (lines=5) @@ | ||
129 | } |
|
130 | ||
131 | $image_name = Context::get('image_name'); |
|
132 | if (is_uploaded_file($image_name['tmp_name'])) |
|
133 | { |
|
134 | $output = $oMemberController->insertImageName($args->member_srl, $image_name['tmp_name']); |
|
135 | if(!$output->toBool()) return $output; |
|
136 | } |
|
137 | ||
138 | $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispMemberAdminList'); |
|
139 | $this->setRedirectUrl($returnUrl); |