source: trunk/admin/user_list.php @ 2041

Last change on this file since 2041 was 2041, checked in by rub, 17 years ago

Resolved issue 0000711: Add triggers and template block in order to add quickly new informations

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 22.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | file          : $Id: user_list.php 2041 2007-06-22 21:02:55Z rub $
8// | last update   : $Date: 2007-06-22 21:02:55 +0000 (Fri, 22 Jun 2007) $
9// | last modifier : $Author: rub $
10// | revision      : $Revision: 2041 $
11// +-----------------------------------------------------------------------+
12// | This program is free software; you can redistribute it and/or modify  |
13// | it under the terms of the GNU General Public License as published by  |
14// | the Free Software Foundation                                          |
15// |                                                                       |
16// | This program is distributed in the hope that it will be useful, but   |
17// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
18// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
19// | General Public License for more details.                              |
20// |                                                                       |
21// | You should have received a copy of the GNU General Public License     |
22// | along with this program; if not, write to the Free Software           |
23// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
24// | USA.                                                                  |
25// +-----------------------------------------------------------------------+
26
27/**
28 * Add users and manage users list
29 */
30
31// +-----------------------------------------------------------------------+
32// |                              functions                                |
33// +-----------------------------------------------------------------------+
34
35/**
36 * returns a list of users depending on page filters (in $_GET)
37 *
38 * Each user comes with his related informations : id, username, mail
39 * address, list of groups.
40 *
41 * @return array
42 */
43function get_filtered_user_list()
44{
45  global $conf, $page;
46
47  $users = array();
48
49  // filter
50  $filter = array();
51
52  if (isset($_GET['username']) and !empty($_GET['username']))
53  {
54    $username = str_replace('*', '%', $_GET['username']);
55    if (function_exists('mysql_real_escape_string'))
56    {
57      $filter['username'] = mysql_real_escape_string($username);
58    }
59    else
60    {
61      $filter['username'] = mysql_escape_string($username);
62    }
63  }
64
65  if (isset($_GET['group'])
66      and -1 != $_GET['group']
67      and is_numeric($_GET['group']))
68  {
69    $filter['group'] = $_GET['group'];
70  }
71
72  if (isset($_GET['status'])
73      and in_array($_GET['status'], get_enums(USER_INFOS_TABLE, 'status')))
74  {
75    $filter['status'] = $_GET['status'];
76  }
77
78  // how to order the list?
79  $order_by = 'id';
80  if (isset($_GET['order_by'])
81      and in_array($_GET['order_by'], array_keys($page['order_by_items'])))
82  {
83    $order_by = $_GET['order_by'];
84  }
85
86  $direction = 'ASC';
87  if (isset($_GET['direction'])
88      and in_array($_GET['direction'], array_keys($page['direction_items'])))
89  {
90    $direction = strtoupper($_GET['direction']);
91  }
92
93  // search users depending on filters and order
94  $query = '
95SELECT DISTINCT u.'.$conf['user_fields']['id'].' AS id,
96                u.'.$conf['user_fields']['username'].' AS username,
97                u.'.$conf['user_fields']['email'].' AS email,
98                ui.status,
99                ui.adviser,
100                ui.enabled_high
101  FROM '.USERS_TABLE.' AS u
102    INNER JOIN '.USER_INFOS_TABLE.' AS ui
103      ON u.'.$conf['user_fields']['id'].' = ui.user_id
104    LEFT JOIN '.USER_GROUP_TABLE.' AS ug
105      ON u.'.$conf['user_fields']['id'].' = ug.user_id
106  WHERE u.'.$conf['user_fields']['id'].' > 0';
107  if (isset($filter['username']))
108  {
109    $query.= '
110  AND u.'.$conf['user_fields']['username'].' LIKE \''.$filter['username'].'\'';
111  }
112  if (isset($filter['group']))
113  {
114    $query.= '
115    AND ug.group_id = '.$filter['group'];
116  }
117  if (isset($filter['status']))
118  {
119    $query.= '
120    AND ui.status = \''.$filter['status']."'";
121  }
122  $query.= '
123  ORDER BY '.$order_by.' '.$direction.'
124;';
125
126  $result = pwg_query($query);
127  while ($row = mysql_fetch_array($result))
128  {
129    $user = $row;
130    $user['groups'] = array();
131
132    array_push($users, $user);
133  }
134
135  // add group lists
136  $user_ids = array();
137  foreach ($users as $i => $user)
138  {
139    $user_ids[$i] = $user['id'];
140  }
141  $user_nums = array_flip($user_ids);
142
143  if (count($user_ids) > 0)
144  {
145    $query = '
146SELECT user_id, group_id
147  FROM '.USER_GROUP_TABLE.'
148  WHERE user_id IN ('.implode(',', $user_ids).')
149;';
150    $result = pwg_query($query);
151    while ($row = mysql_fetch_array($result))
152    {
153      array_push(
154        $users[$user_nums[$row['user_id']]]['groups'],
155        $row['group_id']
156        );
157    }
158  }
159
160  return $users;
161}
162
163// +-----------------------------------------------------------------------+
164// |                           initialization                              |
165// +-----------------------------------------------------------------------+
166
167if (!defined('PHPWG_ROOT_PATH'))
168{
169  die('Hacking attempt!');
170}
171
172include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
173
174// +-----------------------------------------------------------------------+
175// | Check Access and exit when user status is not ok                      |
176// +-----------------------------------------------------------------------+
177check_status(ACCESS_ADMINISTRATOR);
178
179$page['order_by_items'] = array(
180  'id' => $lang['registration_date'],
181  'username' => $lang['Username']
182  );
183
184$page['direction_items'] = array(
185  'asc' => $lang['ascending'],
186  'desc' => $lang['descending']
187  );
188
189// +-----------------------------------------------------------------------+
190// |                              add a user                               |
191// +-----------------------------------------------------------------------+
192
193if (isset($_POST['submit_add']))
194{
195  $page['errors'] = register_user(
196    $_POST['login'], $_POST['password'], $_POST['email']);
197
198  if (count($page['errors']) == 0)
199  {
200    array_push(
201      $page['infos'],
202      sprintf(
203        l10n('user "%s" added'),
204        $_POST['login']
205        )
206      );
207  }
208}
209
210// +-----------------------------------------------------------------------+
211// |                               user list                               |
212// +-----------------------------------------------------------------------+
213
214$page['filtered_users'] = get_filtered_user_list();
215
216// +-----------------------------------------------------------------------+
217// |                            selected users                             |
218// +-----------------------------------------------------------------------+
219
220if (isset($_POST['delete']) or isset($_POST['pref_submit']))
221{
222  $collection = array();
223
224  switch ($_POST['target'])
225  {
226    case 'all' :
227    {
228      foreach($page['filtered_users'] as $local_user)
229      {
230        array_push($collection, $local_user['id']);
231      }
232      break;
233    }
234    case 'selection' :
235    {
236      if (isset($_POST['selection']))
237      {
238        $collection = $_POST['selection'];
239      }
240      break;
241    }
242  }
243
244  if (count($collection) == 0)
245  {
246    array_push($page['errors'], l10n('Select at least one user'));
247  }
248}
249
250// +-----------------------------------------------------------------------+
251// |                             delete users                              |
252// +-----------------------------------------------------------------------+
253if (isset($_POST['delete']) and count($collection) > 0)
254{
255  if (in_array($conf['guest_id'], $collection))
256  {
257    array_push($page['errors'], l10n('Guest cannot be deleted'));
258  }
259  if (($conf['guest_id'] != $conf['default_user_id']) and 
260      in_array($conf['default_user_id'], $collection))
261  {
262    array_push($page['errors'], l10n('Default user cannot be deleted'));
263  }
264  if (in_array($conf['webmaster_id'], $collection))
265  {
266    array_push($page['errors'], l10n('Webmaster cannot be deleted'));
267  }
268  if (in_array($user['id'], $collection))
269  {
270    array_push($page['errors'], l10n('You cannot delete your account'));
271  }
272
273  if (count($page['errors']) == 0)
274  {
275    if (isset($_POST['confirm_deletion']) and 1 == $_POST['confirm_deletion'])
276    {
277      foreach ($collection as $user_id)
278      {
279        delete_user($user_id);
280      }
281      array_push(
282        $page['infos'],
283        l10n_dec(
284          '%d user deleted', '%d users deleted',
285          count($collection)
286          )
287        );
288      foreach ($page['filtered_users'] as $filter_key => $filter_user)
289      {
290        if (in_array($filter_user['id'], $collection))
291        {
292          unset($page['filtered_users'][$filter_key]);
293        }
294      }
295    }
296    else
297    {
298      array_push($page['errors'], l10n('You need to confirm deletion'));
299    }
300  }
301}
302
303// +-----------------------------------------------------------------------+
304// |                       preferences form submission                     |
305// +-----------------------------------------------------------------------+
306
307if (isset($_POST['pref_submit']) and count($collection) > 0)
308{
309  if (-1 != $_POST['associate'])
310  {
311    $datas = array();
312
313    $query = '
314SELECT user_id
315  FROM '.USER_GROUP_TABLE.'
316  WHERE group_id = '.$_POST['associate'].'
317;';
318    $associated = array_from_query($query, 'user_id');
319
320    $associable = array_diff($collection, $associated);
321
322    if (count($associable) > 0)
323    {
324      foreach ($associable as $item)
325      {
326        array_push($datas,
327                   array('group_id'=>$_POST['associate'],
328                         'user_id'=>$item));
329      }
330
331      mass_inserts(USER_GROUP_TABLE,
332                   array('group_id', 'user_id'),
333                   $datas);
334    }
335  }
336
337  if (-1 != $_POST['dissociate'])
338  {
339    $query = '
340DELETE FROM '.USER_GROUP_TABLE.'
341  WHERE group_id = '.$_POST['dissociate'].'
342  AND user_id IN ('.implode(',', $collection).')
343';
344    pwg_query($query);
345  }
346
347  // properties to set for the collection (a user list)
348  $datas = array();
349  $dbfields = array('primary' => array('user_id'), 'update' => array());
350
351  $formfields =
352    array('nb_image_line', 'nb_line_page', 'template', 'language',
353          'recent_period', 'maxwidth', 'expand', 'show_nb_comments',
354          'show_nb_hits', 'maxheight', 'status', 'enabled_high');
355
356  $true_false_fields = array('expand', 'show_nb_comments', 
357                       'show_nb_hits', 'enabled_high');
358  if ($conf['allow_adviser'])
359  {
360    array_push($formfields, 'adviser');
361    array_push($true_false_fields, 'adviser');
362  }
363
364  foreach ($formfields as $formfield)
365  {
366    // special for true/false fields
367    if (in_array($formfield, $true_false_fields))
368    {
369      $test = $formfield;
370    }
371    else
372    {
373      $test = $formfield.'_action';
374    }
375
376    if ($_POST[$test] != 'leave')
377    {
378      array_push($dbfields['update'], $formfield);
379    }
380  }
381
382  // updating elements is useful only if needed...
383  if (count($dbfields['update']) > 0)
384  {
385    $datas = array();
386
387    foreach ($collection as $user_id)
388    {
389      $data = array();
390      $data['user_id'] = $user_id;
391
392      // TODO : verify if submited values are semanticaly correct
393      foreach ($dbfields['update'] as $dbfield)
394      {
395        // if the action is 'unset', the key won't be in row and
396        // mass_updates function will set this field to NULL
397        if (in_array($dbfield, $true_false_fields)
398            or 'set' == $_POST[$dbfield.'_action'])
399        {
400          $data[$dbfield] = $_POST[$dbfield];
401        }
402      }
403
404      // special users checks
405      if
406        (
407          ($conf['webmaster_id'] == $user_id) or
408          ($conf['guest_id'] == $user_id) or
409          ($conf['default_user_id'] == $user_id)
410        )
411      {
412        // status must not be changed
413        if (isset($data['status']))
414        {
415          if ($conf['webmaster_id'] == $user_id)
416          {
417            $data['status'] = 'webmaster';
418          }
419          else
420          {
421            $data['status'] = 'guest';
422          }
423        }
424
425        // could not be adivser
426        if (isset($data['adviser']))
427        {
428          $data['adviser'] = 'false';
429        }
430      }
431
432      array_push($datas, $data);
433    }
434
435    mass_updates(USER_INFOS_TABLE, $dbfields, $datas);
436  }
437
438  redirect(
439    PHPWG_ROOT_PATH.
440    'admin.php'.
441    get_query_string_diff(
442      array(
443        'start'
444        )
445      )
446    );
447}
448
449// +-----------------------------------------------------------------------+
450// |                              groups list                              |
451// +-----------------------------------------------------------------------+
452
453$groups = array();
454
455$query = '
456SELECT id, name
457  FROM '.GROUPS_TABLE.'
458  ORDER BY name ASC
459;';
460$result = pwg_query($query);
461
462while ($row = mysql_fetch_array($result))
463{
464  $groups[$row['id']] = $row['name'];
465}
466
467// +-----------------------------------------------------------------------+
468// |                             template init                             |
469// +-----------------------------------------------------------------------+
470
471$template->set_filenames(array('user_list'=>'admin/user_list.tpl'));
472
473$base_url = PHPWG_ROOT_PATH.'admin.php?page=user_list';
474
475if (isset($_GET['start']) and is_numeric($_GET['start']))
476{
477  $start = $_GET['start'];
478}
479else
480{
481  $start = 0;
482}
483
484$template->assign_vars(
485  array(
486    'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=user_list',
487
488    'F_ADD_ACTION' => $base_url,
489    'F_USERNAME' => @htmlentities($_GET['username']),
490    'F_FILTER_ACTION' => PHPWG_ROOT_PATH.'admin.php'
491    ));
492
493if (isset($_GET['id']))
494{
495  $template->assign_block_vars('session', array('ID' => $_GET['id']));
496}
497
498// Hide radio-button if not allow to assign adviser
499if ($conf['allow_adviser'])
500{
501  $template->assign_block_vars('adviser', array());
502}
503
504foreach ($page['order_by_items'] as $item => $label)
505{
506  $selected = (isset($_GET['order_by']) and $_GET['order_by'] == $item) ?
507    'selected="selected"' : '';
508  $template->assign_block_vars(
509    'order_by',
510    array(
511      'VALUE' => $item,
512      'CONTENT' => $label,
513      'SELECTED' => $selected
514      ));
515}
516
517foreach ($page['direction_items'] as $item => $label)
518{
519  $selected = (isset($_GET['direction']) and $_GET['direction'] == $item) ?
520    'selected="selected"' : '';
521  $template->assign_block_vars(
522    'direction',
523    array(
524      'VALUE' => $item,
525      'CONTENT' => $label,
526      'SELECTED' => $selected
527      ));
528}
529
530$blockname = 'group_option';
531
532$template->assign_block_vars(
533  $blockname,
534  array(
535    'VALUE'=> -1,
536    'CONTENT' => '------------',
537    'SELECTED' => ''
538    ));
539
540foreach ($groups as $group_id => $group_name)
541{
542  $selected = (isset($_GET['group']) and $_GET['group'] == $group_id) ?
543    'selected="selected"' : '';
544  $template->assign_block_vars(
545    $blockname,
546    array(
547      'VALUE' => $group_id,
548      'CONTENT' => $group_name,
549      'SELECTED' => $selected
550      ));
551}
552
553$blockname = 'status_option';
554
555$template->assign_block_vars(
556  $blockname,
557  array(
558    'VALUE'=> -1,
559    'CONTENT' => '------------',
560    'SELECTED' => ''
561    ));
562
563foreach (get_enums(USER_INFOS_TABLE, 'status') as $status)
564{
565  $selected = (isset($_GET['status']) and $_GET['status'] == $status) ?
566    'selected="selected"' : '';
567  $template->assign_block_vars(
568    $blockname,
569    array(
570      'VALUE' => $status,
571      'CONTENT' => $lang['user_status_'.$status],
572      'SELECTED' => $selected
573      ));
574}
575
576if (isset($_POST['pref_submit']))
577{
578//  echo '<pre>'; print_r($_POST); echo '</pre>';
579  $template->assign_vars(
580    array(
581      'ADVISER_YES' => 'true' == (isset($_POST['adviser']) and $_POST['adviser']) ? 'checked="checked"' : '',
582      'ADVISER_NO' => 'false' == (isset($_POST['adviser']) and $_POST['adviser']) ? 'checked="checked"' : '',
583      'NB_IMAGE_LINE' => $_POST['nb_image_line'],
584      'NB_LINE_PAGE' => $_POST['nb_line_page'],
585      'MAXWIDTH' => $_POST['maxwidth'],
586      'MAXHEIGHT' => $_POST['maxheight'],
587      'RECENT_PERIOD' => $_POST['recent_period'],
588      'EXPAND_YES' => 'true' == $_POST['expand'] ? 'checked="checked"' : '',
589      'EXPAND_NO' => 'false' == $_POST['expand'] ? 'checked="checked"' : '',
590      'SHOW_NB_COMMENTS_YES' =>
591        'true' == $_POST['show_nb_comments'] ? 'checked="checked"' : '',
592      'SHOW_NB_COMMENTS_NO' =>
593        'false' == $_POST['show_nb_comments'] ? 'checked="checked"' : '',
594      'SHOW_NB_HITS_YES' =>
595        'true' == $_POST['show_nb_hits'] ? 'checked="checked"' : '',
596      'SHOW_NB_HITS_NO' =>
597        'false' == $_POST['show_nb_hits'] ? 'checked="checked"' : '',
598      'ENABLED_HIGH_YES' => 'true' == $_POST['enabled_high'] ? 'checked="checked"' : '',
599      'ENABLED_HIGH_NO' => 'false' == $_POST['enabled_high'] ? 'checked="checked"' : '',
600      ));
601}
602else
603{
604  $default_user = get_default_user_info(true);
605  $template->assign_vars(
606    array(
607      'NB_IMAGE_LINE' => $default_user['nb_image_line'],
608      'NB_LINE_PAGE' => $default_user['nb_line_page'],
609      'MAXWIDTH' => $default_user['maxwidth'],
610      'MAXHEIGHT' => $default_user['maxheight'],
611      'RECENT_PERIOD' => $default_user['recent_period'],
612      ));
613}
614
615$blockname = 'template_option';
616
617foreach (get_pwg_themes() as $pwg_template)
618{
619  if (isset($_POST['pref_submit']))
620  {
621    $selected = $_POST['template']==$pwg_template ? 'selected="selected"' : '';
622  }
623  else if (get_default_template() == $pwg_template)
624  {
625    $selected = 'selected="selected"';
626  }
627  else
628  {
629    $selected = '';
630  }
631
632  $template->assign_block_vars(
633    $blockname,
634    array(
635      'VALUE'=> $pwg_template,
636      'CONTENT' => $pwg_template,
637      'SELECTED' => $selected
638      ));
639}
640
641$blockname = 'language_option';
642
643foreach (get_languages() as $language_code => $language_name)
644{
645  if (isset($_POST['pref_submit']))
646  {
647    $selected = $_POST['language']==$language_code ? 'selected="selected"':'';
648  }
649  else if (get_default_language() == $language_code)
650  {
651    $selected = 'selected="selected"';
652  }
653  else
654  {
655    $selected = '';
656  }
657
658  $template->assign_block_vars(
659    $blockname,
660    array(
661      'VALUE'=> $language_code,
662      'CONTENT' => $language_name,
663      'SELECTED' => $selected
664      ));
665}
666
667$blockname = 'pref_status_option';
668
669foreach (get_enums(USER_INFOS_TABLE, 'status') as $status)
670{
671  if (isset($_POST['pref_submit']))
672  {
673    $selected = $_POST['status'] == $status ? 'selected="selected"' : '';
674  }
675  else if ('normal' == $status)
676  {
677    $selected = 'selected="selected"';
678  }
679  else
680  {
681    $selected = '';
682  }
683
684  // Only status <= can be assign
685  if (is_autorize_status(get_access_type_status($status)))
686  {
687    $template->assign_block_vars(
688      $blockname,
689      array(
690        'VALUE' => $status,
691        'CONTENT' => $lang['user_status_'.$status],
692        'SELECTED' => $selected
693        ));
694  }
695}
696
697// associate
698$blockname = 'associate_option';
699
700$template->assign_block_vars(
701  $blockname,
702  array(
703    'VALUE'=> -1,
704    'CONTENT' => '------------',
705    'SELECTED' => ''
706    ));
707
708foreach ($groups as $group_id => $group_name)
709{
710  if (isset($_POST['pref_submit']))
711  {
712    $selected = $_POST['associate'] == $group_id ? 'selected="selected"' : '';
713  }
714  else
715  {
716    $selected = '';
717  }
718
719  $template->assign_block_vars(
720    $blockname,
721    array(
722      'VALUE' => $group_id,
723      'CONTENT' => $group_name,
724      'SELECTED' => $selected
725      ));
726}
727
728// dissociate
729$blockname = 'dissociate_option';
730
731$template->assign_block_vars(
732  $blockname,
733  array(
734    'VALUE'=> -1,
735    'CONTENT' => '------------',
736    'SELECTED' => ''
737    ));
738
739foreach ($groups as $group_id => $group_name)
740{
741  if (isset($_POST['pref_submit']))
742  {
743    $selected = $_POST['dissociate'] == $group_id ? 'selected="selected"' : '';
744  }
745  else
746  {
747    $selected = '';
748  }
749
750  $template->assign_block_vars(
751    $blockname,
752    array(
753      'VALUE' => $group_id,
754      'CONTENT' => $group_name,
755      'SELECTED' => $selected
756      ));
757}
758
759// +-----------------------------------------------------------------------+
760// |                            navigation bar                             |
761// +-----------------------------------------------------------------------+
762
763$url = PHPWG_ROOT_PATH.'admin.php'.get_query_string_diff(array('start'));
764
765$navbar = create_navigation_bar(
766  $url,
767  count($page['filtered_users']),
768  $start,
769  $conf['users_page']
770  );
771
772$template->assign_vars(array('NAVBAR' => $navbar));
773
774// +-----------------------------------------------------------------------+
775// |                               user list                               |
776// +-----------------------------------------------------------------------+
777
778$profile_url = get_root_url().'admin.php?page=profile&amp;user_id=';
779$perm_url = get_root_url().'admin.php?page=user_perm&amp;user_id=';
780
781$visible_user_list = array();
782foreach ($page['filtered_users'] as $num => $local_user)
783{
784  // simulate LIMIT $start, $conf['users_page']
785  if ($num < $start)
786  {
787    continue;
788  }
789  if ($num >= $start + $conf['users_page'])
790  {
791    break;
792  }
793
794  $visible_user_list[] = $local_user;
795}
796
797$visible_user_list = trigger_event('loc_visible_user_list', $visible_user_list);
798
799foreach ($visible_user_list as $num => $local_user)
800{
801  $groups_string = preg_replace(
802    '/(\d+)/e',
803    "\$groups['$1']",
804    implode(
805      ', ',
806      $local_user['groups']
807      )
808    );
809
810  if (isset($_POST['pref_submit'])
811      and isset($_POST['selection'])
812      and in_array($local_user['id'], $_POST['selection']))
813  {
814    $checked = 'checked="checked"';
815  }
816  else
817  {
818    $checked = '';
819  }
820
821  $template->assign_block_vars(
822    'user',
823    array(
824      'CLASS' => ($num % 2 == 1) ? 'row2' : 'row1',
825      'ID' => $local_user['id'],
826      'CHECKED' => $checked,
827      'U_PROFILE' => $profile_url.$local_user['id'],
828      'U_PERM' => $perm_url.$local_user['id'],
829      'USERNAME' => $local_user['username']
830        .($local_user['id'] == $conf['guest_id']
831          ? '<BR />['.l10n('is_the_guest').']' : '')
832        .($local_user['id'] == $conf['default_user_id']
833          ? '<BR />['.l10n('is_the_default').']' : ''),
834      'STATUS' => $lang['user_status_'.
835        $local_user['status']].(($local_user['adviser'] == 'true')
836        ? '<BR />['.l10n('adviser').']' : ''),
837      'EMAIL' => get_email_address_as_display_text($local_user['email']),
838      'GROUPS' => $groups_string,
839      'PROPERTIES' => 
840        (isset($local_user['enabled_high']) and ($local_user['enabled_high'] == 'true'))
841        ? $lang['is_high_enabled'] : $lang['is_high_disabled']
842      )
843    );
844  trigger_action('loc_assign_block_var_local_user_list', $local_user);
845}
846
847// +-----------------------------------------------------------------------+
848// |                           html code display                           |
849// +-----------------------------------------------------------------------+
850
851$template->assign_var_from_handle('ADMIN_CONTENT', 'user_list');
852?>
Note: See TracBrowser for help on using the repository browser.