From a7010dd9bbc81d6f4c52f9a6c2dfc372a0090004 Mon Sep 17 00:00:00 2001 From: daitingting Date: Mon, 14 Oct 2024 05:32:14 +0000 Subject: [PATCH] * [task#129946,done,0.5h] Add acl field. --- module/doc/ui/batchmovedoc.html.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/module/doc/ui/batchmovedoc.html.php b/module/doc/ui/batchmovedoc.html.php index 4c42318758..2d44e606ef 100644 --- a/module/doc/ui/batchmovedoc.html.php +++ b/module/doc/ui/batchmovedoc.html.php @@ -36,4 +36,18 @@ formPanel set::label($lang->doc->module), set::control(array('control' => 'picker', 'name' => 'module', 'items' => $optionMenu, 'value' => $moduleID, 'required' => true)) ), + formRow + ( + setID('aclBox'), + formGroup + ( + set::label($lang->doclib->control), + radioList + ( + set::name('acl'), + set::items($aclItems), + set::value($type == 'mine' ? 'private' : 'open'), + ) + ) + ), );