add possibility to move customers to another admin/reseller, fixes #1166

Signed-off-by: Michael Kaufmann (d00p) <d00p@froxlor.org>
This commit is contained in:
Michael Kaufmann (d00p)
2014-11-25 12:23:30 +01:00
parent e4ceb962e9
commit b4a8418e10
4 changed files with 104 additions and 0 deletions

View File

@@ -252,6 +252,18 @@ return array(
'value' => array($result['perlenabled'])
)
)
),
'section_d' => array(
'title' => $lng['admin']['movetoadmin'],
'image' => 'icons/user_edit.png',
'visible' => ($admin_select_cnt > 1),
'fields' => array(
'move_to_admin' => array(
'label' => $lng['admin']['movecustomertoadmin'],
'type' => 'select',
'select_var' => $admin_select
)
)
)
)
)