1
|
<?php
|
2
|
/**
|
3
|
* @category admin
|
4
|
* @package groups
|
5
|
* @author Independend-Software-Team
|
6
|
* @author WebsiteBaker Project
|
7
|
* @copyright 2009-2012, Website Baker Org. e.V.
|
8
|
* @link http://www.websitebaker2.org/
|
9
|
* @license http://www.gnu.org/licenses/gpl.html
|
10
|
* @platform WebsiteBaker 2.8.x
|
11
|
* @requirements PHP 5.2.2 and higher
|
12
|
* @version $Id: delete.inc.php 1883 2013-03-07 06:48:46Z Luisehahne $
|
13
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/groups/delete.inc.php $
|
14
|
* @lastmodified $Date: 2013-03-07 07:48:46 +0100 (Thu, 07 Mar 2013) $
|
15
|
* @description all basic actions of this module, called by dispatcher only.
|
16
|
*/
|
17
|
|
18
|
// Must include code to stop this file being access directly
|
19
|
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); }
|
20
|
|
21
|
/* *****************************************************************************
|
22
|
* Delete an existing group and remove existing group in user
|
23
|
* @access public
|
24
|
* @param object $admin: admin-object
|
25
|
* @param int $group_id: ID from group to delete
|
26
|
* @return bool: true or false
|
27
|
*/
|
28
|
function delete_group($admin, $group_id = 0)
|
29
|
{
|
30
|
// global $MESSAGE;
|
31
|
$database = WbDatabase::getInstance();
|
32
|
$mLang = Translate::getInstance();
|
33
|
// first check form-tan
|
34
|
if($admin->checkFTAN())
|
35
|
{
|
36
|
if($group_id > 1) // prevent admin [ID 1] from being deleted
|
37
|
{
|
38
|
$sql = 'SELECT `name` FROM `'.TABLE_PREFIX.'groups` WHERE `group_id` = '.$group_id;
|
39
|
$groupname = ($database->get_one($sql));
|
40
|
// $sql = 'SELECT * FROM `'.TABLE_PREFIX.'groups` ';
|
41
|
$sql = 'DELETE FROM `'.TABLE_PREFIX.'groups` ';
|
42
|
$sql .= 'WHERE `group_id` = '.$group_id;
|
43
|
if($database->query($sql) != false)
|
44
|
{
|
45
|
// remove group from users groups_id
|
46
|
msgQueue :: add($mLang->MESSAGE_GROUPS_DELETED,true);
|
47
|
$sql = 'SELECT `user_id`, `groups_id`, `home_folder` FROM `'.TABLE_PREFIX.'users` WHERE user_id != 1';
|
48
|
if(($res_users = $database->query($sql)) && ($res_users->numRows() > 0) )
|
49
|
{
|
50
|
while($rec_users = $res_users->fetchRow(MYSQL_ASSOC))
|
51
|
{
|
52
|
$user_id = $rec_users['user_id'];
|
53
|
$groups_id = explode(',',$rec_users['groups_id']);
|
54
|
|
55
|
if( is_numeric($x = array_search($group_id, $groups_id)) )
|
56
|
{
|
57
|
unset($groups_id[$x]);
|
58
|
$groups_id = (sizeof($groups_id) == 0) ? FRONTEND_SIGNUP : implode(',',$groups_id);
|
59
|
$groups_id = ( ($groups_id == 1) && (trim($rec_users['home_folder']) != '') ) ? FRONTEND_SIGNUP : $groups_id;
|
60
|
$sql = 'UPDATE `'.TABLE_PREFIX.'users` SET ';
|
61
|
$sql .= '`groups_id` = \''.$groups_id.'\' ';
|
62
|
$sql .= 'WHERE `user_id` = '.$user_id;
|
63
|
if( $database->query($sql) )
|
64
|
{
|
65
|
$sql_info = mysql_info($database->db_handle);
|
66
|
if(preg_match('/matched: *([1-9][0-9]*)/i', $sql_info) != 1)
|
67
|
{
|
68
|
msgQueue :: add($mLang->MESSAGE_RECORD_MODIFIED_FAILED );
|
69
|
}
|
70
|
} else {
|
71
|
|
72
|
msgQueue :: add($database->get_error());
|
73
|
}
|
74
|
}
|
75
|
}
|
76
|
}
|
77
|
// $admin->print_success($msg);
|
78
|
} else {
|
79
|
msgQueue :: add($mLang->MESSAGE_RECORD_MODIFIED_FAILED );
|
80
|
}
|
81
|
}
|
82
|
} else {
|
83
|
msgQueue :: add($mLang->MESSAGE_GENERIC_SECURITY_OFFENSE );
|
84
|
}
|
85
|
$admin->print_header();
|
86
|
return ;
|
87
|
}
|