From 734ff7d33fde0ee3f22df8ca03765d96b60bf7fd Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 27 Apr 2021 17:06:19 +0200 Subject: [PATCH 1/2] add path to documentListRow, make column for form wider --- views/bootstrap/class.Timeline.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/views/bootstrap/class.Timeline.php b/views/bootstrap/class.Timeline.php index c374c5275..c9257142d 100644 --- a/views/bootstrap/class.Timeline.php +++ b/views/bootstrap/class.Timeline.php @@ -48,7 +48,7 @@ class SeedDMS_View_Timeline extends SeedDMS_Theme_Style { if($document && $version) { // $this->contentHeading(getMLText("timeline_selected_item")); - print ""; + print "
"; print "\n\n"; print "\n"; print "\n"; @@ -56,7 +56,9 @@ class SeedDMS_View_Timeline extends SeedDMS_Theme_Style { print "\n"; print "\n\n\n"; $previewer = new SeedDMS_Preview_Previewer($cachedir, $previewwidthdetail, $timeout, $xsendfile); - echo $this->documentListRow($document, $previewer); + $extracontent = array(); + $extracontent['below_title'] = $this->getListRowPath($document); + echo $this->documentListRow($document, $previewer, 0, false, $extracontent); echo "\n
".getMLText("name")."".getMLText("action")."
\n"; } @@ -230,11 +232,11 @@ div.timeline-event-selected { $this->pageNavigation(getMLText("admin_tools"), "admin_tools"); $this->rowStart(); - $this->columnStart(3); + $this->columnStart(4); $this->contentHeading(getMLText("timeline")); $this->contentContainerStart(); ?> -
+ formField( getMLText("from"), @@ -263,7 +265,7 @@ div.timeline-event-selected { $this->contentContainerEnd(); echo "
"; $this->columnEnd(); - $this->columnStart(9); + $this->columnStart(8); $this->contentHeading(getMLText("timeline")); $this->printTimelineHtml(550); $this->columnEnd(); From 74a2e39ff4c82499ea77fd24421463bc3cfab118 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Tue, 27 Apr 2021 17:10:42 +0200 Subject: [PATCH 2/2] put form into column --- views/bootstrap/class.RemoveUserFromProcesses.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/views/bootstrap/class.RemoveUserFromProcesses.php b/views/bootstrap/class.RemoveUserFromProcesses.php index be3cfbfde..3eddcdb23 100644 --- a/views/bootstrap/class.RemoveUserFromProcesses.php +++ b/views/bootstrap/class.RemoveUserFromProcesses.php @@ -39,6 +39,8 @@ class SeedDMS_View_RemoveUserFromProcesses extends SeedDMS_Theme_Style { $this->contentHeading(getMLText("rm_user_from_processes")); $this->warningMsg(getMLText("confirm_rm_user_from_processes", array ("username" => htmlspecialchars($rmuser->getFullName())))); + $this->rowStart(); + $this->columnStart(4); ?> @@ -203,6 +205,9 @@ class SeedDMS_View_RemoveUserFromProcesses extends SeedDMS_Theme_Style { columnEnd(); + $this->columnStart(8); + $this->rowEnd(); $this->contentEnd(); $this->htmlEndPage(); } /* }}} */