issue #1378 add Activity tab in user manager

This commit is contained in:
MatthieuLP
2021-04-09 09:34:01 +02:00
committed by plegall
parent d784822664
commit ec4d677cf7
11 changed files with 1394 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
// +-----------------------------------------------------------------------+
// | This file is part of Piwigo. |
// | |
// | For copyright and license information, please view the COPYING.txt |
// | file that was distributed with this source code. |
// +-----------------------------------------------------------------------+
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($page['tab']);
$tabsheet->assign();
?>