root/devel-backup/_admin/users_add.php

Revision 45, 0.5 kB (checked in by sven, 3 years ago)

dos2unix to clean line endings, set svn property eol-style native, some whitespace homogenisation

  • Property svn:eol-style set to native
Line 
1 <?php
2
3     //    ELGG bulk user add admin panel page
4
5     // Run includes
6         require("../includes.php");
7         
8     // Initialise functions for user details, icon management and profile management
9         run("admin:init");
10
11         define("context", "admin");
12         
13     // You must be logged on to view this!
14                                 
15         echo run("templates:draw:page", array(
16                     gettext("Add multiple users"),
17                     run("templates:draw", array(
18                         'context' => 'contentholder',
19                         'title' => gettext("Add multiple users"),
20                         'body' => run("admin:users:add")
21                     )
22                     )
23                 )
24                 );
25
26
27
28 ?>
Note: See TracBrowser for help on using the browser.