5
5
<div class="configure adminConfig">
7
7
<legend><?php echo image_tag('config.png', array('alt' => 'config gear icon')) ?>Access Control:</legend>
9
9
<a href="<?php echo url_for('admin/new') ?>" class="continueButton" title="Create New Account">Create Account</a><br/><br/>
10
10
<a href="<?php echo url_for('admin/list') ?>" class="continueButton" title="List Existing Accounts">List Accounts</a><br/><br/>
11
<a href="<?php echo url_for('admin/cred') ?>" class="continueButton" title="Credential Management">Credential Management</a><br/><br/>
11
<!--<a href="<?php echo url_for('admin/cred') ?>" class="continueButton" title="Credential Management">Credential Management</a><br/><br/>-->
15
15
<legend><?php echo image_tag('config.png', array('alt' => 'config gear icon')) ?>Configuration:</legend>
17
17
<a href="<?php echo url_for('admin/config') ?>" class="continueButton" title="System Settings">System Settings</a><br/><br/>
18
18
<a href="<?php echo url_for('admin/globals') ?>" class="continueButton" title="System Settings">Global Parameters</a><br/><br/>
19
<a href="<?php echo url_for('admin/pacman') ?>" class="continueButton" title="Module Manager">Package Manager</a><br/><br/>
19
<!-- <a href="<?php echo url_for('admin/pacman') ?>" class="continueButton" title="Module Manager">Package Manager</a><br/><br/>-->
22
22
<legend><?php echo image_tag('config.png', array('alt' => 'config gear icon')) ?>Custom Management:</legend>
25
25
$exportUrl = url_for('admin/disablestaff') ;
26
echo link_to('Disable All Staff Resources', $exportUrl, array('method' => 'post', 'confirm' => 'Are you sure you want to inactivate all staff?', 'class' => 'deleteButton', 'title' => 'Inactivate all Staff Resources'));
26
echo link_to('Disable All Staff Resources', $exportUrl, array('method' => 'post', 'confirm' => 'Are you sure you want to set all staff to inactive? Setting all staff to inactive will make them all unavailable for deployment.', 'class' => 'deleteButton', 'title' => 'Inactivate all Staff Resources'));
27
27
//all links on this page should use the link_to helper
30
<?php echo link_to('Reindex Search Data', url_for('admin/searchreindex'), array('method' => 'post',
31
'confirm' => 'Are you sure you want to reindex all of your search data? This process takes a ' .
32
'long time and may interrupt any currently in-progress searches.', 'class' => 'deleteButton',
33
'title' => 'Reindex Search Data')); ?>
34
<?php if ($enable_cache_clear == 1): ?>
36
<?php echo link_to('Clear System Cache', url_for('admin/clearcache'), array('method' => 'post',
37
'confirm' => 'Are you sure you want to clear the system cache? This could destructive to any ' .
38
'currently ongoing actions and/or affect other applications on this server. Only execute this ' .
39
'action if you know what you are doing.', 'class' => 'deleteButton',
40
'title' => 'Clear System Cache')); ?>