mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-03 01:03:28 +09:00
issue 2079 added the name of extra variables in a member information modify page and a signup page.
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11011 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
acbad1b6d9
commit
e62403ab10
2 changed files with 60 additions and 0 deletions
|
|
@ -548,6 +548,35 @@
|
|||
return $this->join_form_list;
|
||||
}
|
||||
|
||||
/**
|
||||
* get used join form list.
|
||||
*
|
||||
* @return array $joinFormList
|
||||
**/
|
||||
function getUsedJoinFormList()
|
||||
{
|
||||
$args->sort_index = "list_order";
|
||||
$output = executeQueryArray('member.getJoinFormList', $args);
|
||||
|
||||
if(!$output->toBool())
|
||||
{
|
||||
return array();
|
||||
}
|
||||
|
||||
$joinFormList = array();
|
||||
foreach($output->data as $val)
|
||||
{
|
||||
if($val->is_active != 'Y')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
$joinFormList[] = $val;
|
||||
}
|
||||
|
||||
return $joinFormList;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Combine extend join form and member information (used to modify member information)
|
||||
**/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue