<?php
/**
* ProjectPress access control levels
*
* @package ProjectPress
* @since 2.1
*/
// Starts the session.
session_start();
define('access',true);
include(dirname(dirname(dirname(__FILE__))) . '/config.inc.php');
include(PM_DIR . 'pm-includes/global.inc.php');
require(PM_DIR . 'pm-includes/functions.php');
include(PM_DIR . 'pm-includes/header.php');
// User is logged in and is an admin.
is_admin();
// Enable for error checking and troubleshooting.
//display_errors();
?>
<div id="page-title">
<h1 valign="middle"><?php _e('Select an Admin Function'); ?> :: <a href="./">User/Permissions</a> | <a href="acl.php">Settings</a></h1>
</div>
<div id="middle">
<table class="static">
<thead>
<tr>
<th> </th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="users.php">Manage Users</a></td>
<td><a href="roles.php">Manage Roles</a></td>
<td><a href="perms.php">Manage Permissions</a></td>
</tr>
</tbody>
</table>
</div>
<?php
include(PM_DIR . 'pm-includes/footer.php');