source: contrib/Dms/out/out.AdminTools.php @ 3526

Revision 3526, 1.1 KB checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado modulos Timesheet e DMS para a comunidade.

  • Property svn:executable set to *
Line 
1<?php
2include("../inc/inc.Settings.php");
3include("../inc/inc.AccessUtils.php");
4include("../inc/inc.ClassAccess.php");
5include("../inc/inc.ClassDocument.php");
6include("../inc/inc.ClassFolder.php");
7include("../inc/inc.ClassGroup.php");
8include("../inc/inc.ClassUser.php");
9include("../inc/inc.DBAccess.php");
10include("../inc/inc.FileUtils.php");
11include("../inc/inc.Language.php");
12include("../inc/inc.OutUtils.php");
13include("../inc/inc.Authentication.php");
14
15if (!$user->isAdmin())
16        die ("access denied");
17
18printHTMLHead( getMLText("admin_tools") );
19printTitleBar(getFolder($settings->_rootFolderID));
20printCenterStart();
21
22printStartBox(getMLText("admin_tools"));
23?>
24        <div class="standardText">
25                <a href="out.Statistic.php"><?php echo getMLText("folders_and_documents_statistic")?></a><p>
26                <!--a href="out.UsrMgr.php"><?php echo getMLText("user_management")?></a><p>
27                <a href="out.GroupMgr.php"><?php echo getMLText("group_management")?></a><p-->
28                <a href="out.DefaultKeywords.php"><?php echo getMLText("global_default_keywords")?></a>
29        </div>
30<?php
31printEndBox();
32
33
34printCenterEnd();
35printHTMLFoot();
36?>
Note: See TracBrowser for help on using the repository browser.