source: trunk/admin/group_list.php @ 1359

Last change on this file since 1359 was 1072, checked in by rub, 18 years ago

Step 2 improvement issue 0000301:

o Add and use Functions Check of status
o Restricted Access for user generic

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.8 KB
RevLine 
[21]1<?php
[362]2// +-----------------------------------------------------------------------+
[593]3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
[675]5// | Copyright (C) 2003-2005 PhpWebGallery Team - http://phpwebgallery.net |
[362]6// +-----------------------------------------------------------------------+
[593]7// | branch        : BSF (Best So Far)
[362]8// | file          : $RCSfile$
9// | last update   : $Date: 2006-03-09 22:46:28 +0000 (Thu, 09 Mar 2006) $
10// | last modifier : $Author: rub $
11// | revision      : $Revision: 1072 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
[815]27
[623]28if( !defined("PHPWG_ROOT_PATH") )
29{
[815]30  die ("Hacking attempt!");
[623]31}
32
[1072]33include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
34
[815]35// +-----------------------------------------------------------------------+
[1072]36// | Check Access and exit when user status is not ok                      |
37// +-----------------------------------------------------------------------+
38check_status(ACCESS_ADMINISTRATOR);
39
40// +-----------------------------------------------------------------------+
[815]41// |                             delete a group                            |
42// +-----------------------------------------------------------------------+
43
44if (isset($_GET['delete']) and is_numeric($_GET['delete']))
[21]45{
[631]46  // destruction of the access linked to the group
[815]47  $query = '
48DELETE
49  FROM '.GROUP_ACCESS_TABLE.'
50  WHERE group_id = '.$_GET['delete'].'
51;';
52  pwg_query($query);
53 
54  // destruction of the users links for this group
55  $query = '
56DELETE
57  FROM '.USER_GROUP_TABLE.'
58  WHERE group_id = '.$_GET['delete'].'
59;';
60  pwg_query($query);
61
62  $query = '
63SELECT name
64  FROM '.GROUPS_TABLE.'
65  WHERE id = '.$_GET['delete'].'
66;';
67  list($groupname) = mysql_fetch_row(pwg_query($query));
68 
69  // destruction of the group
70  $query = '
71DELETE
72  FROM '.GROUPS_TABLE.'
73  WHERE id = '.$_GET['delete'].'
74;';
75  pwg_query($query);
76
77  array_push(
78    $page['infos'],
79    sprintf(l10n('group "%s" deleted'), $groupname)
80    );
[21]81}
[815]82
83// +-----------------------------------------------------------------------+
84// |                              add a group                              |
85// +-----------------------------------------------------------------------+
86
87if (isset($_POST['submit_add']))
[21]88{
[815]89  if (empty($_POST['groupname']))
[21]90  {
[815]91    array_push($page['errors'], $lang['group_add_error1']);
[21]92  }
[815]93  if (count($page['errors']) == 0)
[21]94  {
95    // is the group not already existing ?
[815]96    $query = '
97SELECT COUNT(*)
98  FROM '.GROUPS_TABLE.'
99  WHERE name = \''.$_POST['groupname'].'\'
100;';
101    list($count) = mysql_fetch_row(pwg_query($query));
102    if ($count != 0)
[21]103    {
[815]104      array_push($page['errors'], $lang['group_add_error2']);
[21]105    }
106  }
[815]107  if (count($page['errors']) == 0)
[21]108  {
109    // creating the group
[704]110    $query = '
[815]111INSERT INTO '.GROUPS_TABLE.'
112  (name)
[704]113  VALUES
[815]114  (\''.mysql_escape_string($_POST['groupname']).'\')
[704]115;';
116    pwg_query($query);
[815]117
118    array_push(
119      $page['infos'],
120      sprintf(l10n('group "%s" added'), $_POST['groupname'])
121      );
[704]122  }
[623]123}
[21]124
[815]125// +-----------------------------------------------------------------------+
126// |                             template init                             |
127// +-----------------------------------------------------------------------+
[21]128
[815]129$template->set_filenames(array('group_list' => 'admin/group_list.tpl'));
[623]130
[815]131$template->assign_vars(
132  array(
[1004]133    'F_ADD_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=group_list'
[815]134    )
135  );
[623]136
[815]137// +-----------------------------------------------------------------------+
138// |                              group list                               |
139// +-----------------------------------------------------------------------+
140
141$query = '
142SELECT id, name
143  FROM '.GROUPS_TABLE.'
144  ORDER BY id ASC
145;';
146$result = pwg_query($query);
147
148$admin_url = PHPWG_ROOT_PATH.'admin.php?page=';
149$perm_url    = $admin_url.'group_perm&amp;group_id=';
150$del_url     = $admin_url.'group_list&amp;delete=';
151$members_url = $admin_url.'user_list&amp;group=';
152
153$num = 0;
154while ($row = mysql_fetch_array($result))
[623]155{
[815]156  $query = '
157SELECT COUNT(*)
158  FROM '.USER_GROUP_TABLE.'
159  WHERE group_id = '.$row['id'].'
160;';
161  list($counter) = mysql_fetch_row(pwg_query($query));
162 
163  $template->assign_block_vars(
164    'group',
165    array(
166      'CLASS' => ($num++ % 2 == 1) ? 'row2' : 'row1',
167      'NAME' => $row['name'],
168      'MEMBERS' => sprintf(l10n('%d members'), $counter),
169      'U_MEMBERS' => $members_url.$row['id'],
170      'U_DELETE' => $del_url.$row['id'],
171      'U_PERM' => $perm_url.$row['id']
172      )
173    );
[623]174}
175
[815]176// +-----------------------------------------------------------------------+
177// |                           sending html code                           |
178// +-----------------------------------------------------------------------+
179
180$template->assign_var_from_handle('ADMIN_CONTENT', 'group_list');
181
[362]182?>
Note: See TracBrowser for help on using the repository browser.