mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-06 16:53:34 +02:00
feature 1668, user manager redesign: ability to add a new user (call to pwg.users.add through AJAX)
Move the "send connection settings" code to function register_user (avoid code duplication). git-svn-id: http://piwigo.org/svn/trunk@25237 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -25,6 +25,19 @@
|
||||
* Add users and manage users list
|
||||
*/
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | tabs |
|
||||
// +-----------------------------------------------------------------------+
|
||||
|
||||
include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php');
|
||||
|
||||
$my_base_url = get_root_url().'admin.php?page=';
|
||||
|
||||
$tabsheet = new tabsheet();
|
||||
$tabsheet->set_id('users');
|
||||
$tabsheet->select('user_list');
|
||||
$tabsheet->assign();
|
||||
|
||||
// +-----------------------------------------------------------------------+
|
||||
// | groups list |
|
||||
// +-----------------------------------------------------------------------+
|
||||
@@ -73,6 +86,7 @@ $template->assign(
|
||||
array(
|
||||
'users' => $users,
|
||||
'all_users' => join(',', $user_ids),
|
||||
'Double_Password' => $conf['double_password_type_in_admin']
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user