mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 11:33:55 +09:00
add identifier choice
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9110 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
c7b35ff5c7
commit
af4c27f832
12 changed files with 89 additions and 14 deletions
|
|
@ -168,6 +168,21 @@
|
|||
return $member_info;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Return member information with email_address
|
||||
**/
|
||||
function getMemberInfoByEmailAddress($email_address) {
|
||||
if(!$email_address) return;
|
||||
|
||||
$args->email_address = $email_address;
|
||||
$output = executeQuery('member.getMemberInfoByEmailAddress', $args);
|
||||
if(!$output->toBool()) return $output;
|
||||
if(!$output->data) return;
|
||||
|
||||
$member_info = $this->arrangeMemberInfo($output->data);
|
||||
return $member_info;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Return member information with member_srl
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue