mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 23:24:57 +00:00
add hook startRow() before each row
This commit is contained in:
parent
23cc3c08cd
commit
49ba7df19b
|
@ -63,11 +63,13 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
|
|||
<div id="admin-tools">
|
||||
<?php echo $this->callHook('beforeRows'); ?>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 1); ?>
|
||||
<?= self::rowButton("../out/out.UsrMgr.php", "user", "user_management"); ?>
|
||||
<?= self::rowButton("../out/out.GroupMgr.php", "group", "group_management"); ?>
|
||||
<?php echo $this->callHook('endOfRow', 1); ?>
|
||||
<?= self::endRow(); ?>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 2); ?>
|
||||
<?= self::rowButton("../out/out.BackupTools.php", "hdd", "backup_tools"); ?>
|
||||
<?php
|
||||
if ($logfileenable)
|
||||
|
@ -76,6 +78,7 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
|
|||
<?php echo $this->callHook('endOfRow', 2); ?>
|
||||
</div>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 3); ?>
|
||||
<?= self::rowButton("../out/out.DefaultKeywords.php", "reorder", "global_default_keywords"); ?>
|
||||
<?= self::rowButton("../out/out.Categories.php", "columns", "global_document_categories"); ?>
|
||||
<?= self::rowButton("../out/out.AttributeMgr.php", "tags", "global_attributedefinitions"); ?>
|
||||
|
@ -85,6 +88,7 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
|
|||
if($this->params['workflowmode'] == 'advanced') {
|
||||
?>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 4); ?>
|
||||
<?= self::rowButton("../out/out.WorkflowMgr.php", "sitemap", "global_workflows"); ?>
|
||||
<?= self::rowButton("../out/out.WorkflowStatesMgr.php", "star", "global_workflow_states"); ?>
|
||||
<?= self::rowButton("../out/out.WorkflowActionsMgr.php", "bolt", "global_workflow_actions"); ?>
|
||||
|
@ -95,6 +99,7 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
|
|||
if($enablefullsearch) {
|
||||
?>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 5); ?>
|
||||
<?= self::rowButton("../out/out.Indexer.php", "refresh", "update_fulltext_index"); ?>
|
||||
<?= self::rowButton("../out/out.CreateIndex.php", "search", "create_fulltext_index"); ?>
|
||||
<?= self::rowButton("../out/out.IndexInfo.php", "info-sign", "fulltext_info"); ?>
|
||||
|
@ -104,6 +109,7 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
|
|||
}
|
||||
?>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 6); ?>
|
||||
<?= self::rowButton("../out/out.Statistic.php", "tasks", "folders_and_documents_statistic"); ?>
|
||||
<?= self::rowButton("../out/out.Charts.php", "bar-chart", "charts"); ?>
|
||||
<?= self::rowButton("../out/out.ObjectCheck.php", "check", "objectcheck"); ?>
|
||||
|
@ -111,6 +117,7 @@ class SeedDMS_View_AdminTools extends SeedDMS_Bootstrap_Style {
|
|||
<?php echo $this->callHook('endOfRow', 6); ?>
|
||||
<?= self::endRow(); ?>
|
||||
<?= self::startRow(); ?>
|
||||
<?php echo $this->callHook('startOfRow', 7); ?>
|
||||
<?= self::rowButton("../out/out.Settings.php", "wrench", "settings"); ?>
|
||||
<?= self::rowButton("../out/out.ExtensionMgr.php", "cogs", "extension_manager"); ?>
|
||||
<?= self::rowButton("../out/out.Info.php", "info-sign", "version_info"); ?>
|
||||
|
|
Loading…
Reference in New Issue
Block a user