mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-29 15:22:15 +09:00
parent
6d081b9fec
commit
60d390f52e
5 changed files with 79 additions and 23 deletions
|
|
@ -128,21 +128,21 @@ class memberAdminController extends member
|
|||
$signature = Context::get('signature');
|
||||
$oMemberController->putSignature($args->member_srl, $signature);
|
||||
|
||||
$profile_image = $_FILES['profile_image'];
|
||||
$profile_image = Context::get('profile_image');
|
||||
if(is_uploaded_file($profile_image['tmp_name']))
|
||||
{
|
||||
$output = $oMemberController->insertProfileImage($args->member_srl, $profile_image['tmp_name']);
|
||||
if(!$output->toBool()) return $output;
|
||||
}
|
||||
|
||||
$image_mark = $_FILES['image_mark'];
|
||||
$image_mark = Context::get('image_mark');
|
||||
if(is_uploaded_file($image_mark['tmp_name']))
|
||||
{
|
||||
$output = $oMemberController->insertImageMark($args->member_srl, $image_mark['tmp_name']);
|
||||
if(!$output->toBool()) return $output;
|
||||
}
|
||||
|
||||
$image_name = $_FILES['image_name'];
|
||||
$image_name = Context::get('image_name');
|
||||
if (is_uploaded_file($image_name['tmp_name']))
|
||||
{
|
||||
$output = $oMemberController->insertImageName($args->member_srl, $image_name['tmp_name']);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue