put all links onto a button with icon

This commit is contained in:
Uwe Steinmann 2013-04-19 22:10:54 +02:00
parent 9885e26f96
commit 82a8acddfd

View File

@ -44,29 +44,56 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
// $this->contentHeading(getMLText("admin_tools"));
$this->contentContainerStart();
?>
<ul class="unstyled">
<li class="first"><a href="../out/out.Statistic.php"><?php echo getMLText("folders_and_documents_statistic")?></a></li>
<li><a href="../out/out.BackupTools.php"><?php echo getMLText("backup_tools")?></a></li>
<div class="row-fluid">
<a href="../out/out.UsrMgr.php" class="span4 btn btn-large"><i class="icon-user"></i> <?php echo getMLText("user_management")?></a>
<a href="../out/out.GroupMgr.php" class="span4 btn btn-large"><i class="icon-group"></i> <?php echo getMLText("group_management")?></a>
</div>
<p></p>
<div class="row-fluid">
<a href="../out/out.BackupTools.php" class="span4 btn btn-large"><i class="icon-hdd"></i> <?php echo getMLText("backup_tools")?></a>
<?php
if ($logfileenable) echo "<li><a href=\"../out/out.LogManagement.php\">".getMLText("log_management")."</a></li>";
if ($logfileenable)
echo "<a href=\"../out/out.LogManagement.php\" class=\"span4 btn btn-large\"><i class=\"icon-list\"></i> ".getMLText("log_management")."</a>";
?>
<li><a href="../out/out.UsrMgr.php"><?php echo getMLText("user_management")?></a></li>
<li><a href="../out/out.GroupMgr.php"><?php echo getMLText("group_management")?></a></li>
<li><a href="../out/out.DefaultKeywords.php"><?php echo getMLText("global_default_keywords")?></a></li>
<li><a href="../out/out.Categories.php"><?php echo getMLText("global_document_categories")?></a></li>
<li><a href="../out/out.AttributeMgr.php"><?php echo getMLText("global_attributedefinitions")?></a></li>
<li><a href="../out/out.Info.php"><?php echo getMLText("version_info")?></a></li>
</div>
<p></p>
<div class="row-fluid">
<a href="../out/out.DefaultKeywords.php" class="span4 btn btn-large"><i class="icon-reorder"></i> <?php echo getMLText("global_default_keywords")?></a>
<a href="../out/out.Categories.php" class="span4 btn btn-large"><i class="icon-columns"></i> <?php echo getMLText("global_document_categories")?></a>
<a href="../out/out.AttributeMgr.php" class="span4 btn btn-large"><i class="icon-tags"></i> <?php echo getMLText("global_attributedefinitions")?></a>
</div>
<?php
if($this->params['workflowmode'] != 'traditional') {
?>
<p></p>
<div class="row-fluid">
<a href="../out/out.WorkflowMgr.php" class="span4 btn btn-large"><i class="icon-sitemap"></i> <?php echo getMLText("global_workflows"); ?></a>
<a href="../out/out.WorkflowStatesMgr.php" class="span4 btn btn-large"><i class="icon-star"></i> <?php echo getMLText("global_workflow_states"); ?></a>
<a href="../out/out.WorkflowActionsMgr.php" class="span4 btn btn-large"><i class="icon-bolt"></i> <?php echo getMLText("global_workflow_actions"); ?></a>
</div>
<?php
}
if($enablefullsearch) {
?>
<li><a href="../out/out.Indexer.php"><?php echo getMLText("update_fulltext_index")?></a></li>
<li><a href="../out/out.CreateIndex.php"><?php echo getMLText("create_fulltext_index")?></a></li>
<li><a href="../out/out.IndexInfo.php"><?php echo getMLText("fulltext_info")?></a></li>
<p></p>
<div class="row-fluid">
<a href="../out/out.Indexer.php" class="span4 btn btn-large"><i class="icon-refresh"></i> <?php echo getMLText("update_fulltext_index")?></a>
<a href="../out/out.CreateIndex.php" class="span4 btn btn-large"><i class="icon-search"></i> <?php echo getMLText("create_fulltext_index")?></a>
<a href="../out/out.IndexInfo.php" class="span4 btn btn-large"><i class="icon-info-sign"></i> <?php echo getMLText("fulltext_info")?></a>
</div>
<?php
}
?>
<li><a href="../out/out.ObjectCheck.php"><?php echo getMLText("objectcheck")?></a></li>
<li><a href="../out/out.Settings.php"><?php echo getMLText("settings")?></a></li>
<p></p>
<div class="row-fluid">
<a href="../out/out.Statistic.php" class="span4 btn btn-large"><i class="icon-tasks"></i> <?php echo getMLText("folders_and_documents_statistic")?></a>
<a href="../out/out.ObjectCheck.php" class="span4 btn btn-large"><i class="icon-check"></i> <?php echo getMLText("objectcheck")?></a>
<a href="../out/out.Info.php" class="span4 btn btn-large"><i class="icon-info-sign"></i> <?php echo getMLText("version_info")?></a>
</div>
<p></p>
<div class="row-fluid">
<a href="../out/out.Settings.php" class="span4 btn btn-large"><i class="icon-cogs"></i> <?php echo getMLText("settings")?></a>
</div>
</ul>
<?php
$this->contentContainerEnd();