247 lines
6.8 KiB
PHP
247 lines
6.8 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The browsetask view file of tree module of ZenTaoPMS.
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
|
|
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Jinyong Zhu<zhujinyong@easycorp.ltd>
|
|
* @package tree
|
|
* @link https://www.zentao.net
|
|
*/
|
|
namespace zin;
|
|
|
|
data('activeMenuID', 'story');
|
|
|
|
$manageTitle = $lang->tree->manageChild;
|
|
if(strpos($viewType, 'doc') !== false)
|
|
{
|
|
$manageTitle = $lang->doc->manageType;
|
|
}
|
|
elseif(strpos($viewType, 'trainskill') === false and strpos($viewType, 'trainpost') === false)
|
|
{
|
|
$manageChild = 'manage' . ucfirst($viewType) . 'Child';
|
|
$manageTitle = $lang->tree->$manageChild;
|
|
}
|
|
|
|
$maxOrder = 0;
|
|
|
|
$fnAppendApp = function($tree) use(&$fnAppendApp)
|
|
{
|
|
foreach($tree as $subTree)
|
|
{
|
|
if(!empty($subTree->children)) $subTree->children = $fnAppendApp($subTree->children);
|
|
if(!empty($subTree->url)) $subTree->url .= '#app=project';
|
|
}
|
|
|
|
return $tree;
|
|
};
|
|
$tree = $fnAppendApp($tree);
|
|
|
|
/* Generate module rows. */
|
|
$moduleRows = array();
|
|
foreach($sons as $son)
|
|
{
|
|
if($son->order > $maxOrder) $maxOrder = $son->order;
|
|
|
|
$moduleRows[] = formRow
|
|
(
|
|
formGroup
|
|
(
|
|
inputGroup
|
|
(
|
|
setClass('row-module'),
|
|
input
|
|
(
|
|
setClass('col-module'),
|
|
set::name("modules[id$son->id]"),
|
|
set::type('input'),
|
|
set::value($son->name),
|
|
set::placeholder($placeholder)
|
|
),
|
|
input
|
|
(
|
|
setClass('col-short'),
|
|
set::name("shorts[id$son->id]"),
|
|
set::type('input'),
|
|
set::value($son->short),
|
|
set::placeholder($lang->tree->short)
|
|
),
|
|
input
|
|
(
|
|
setClass('hidden'),
|
|
set::name("order[id$son->id]"),
|
|
set::value($son->order),
|
|
set::control('hidden')
|
|
)
|
|
)
|
|
)
|
|
);
|
|
}
|
|
|
|
for($i = 0; $i < \tree::NEW_CHILD_COUNT; $i ++)
|
|
{
|
|
$moduleRows[] = formRow
|
|
(
|
|
formGroup
|
|
(
|
|
inputGroup
|
|
(
|
|
setClass('row-module'),
|
|
input
|
|
(
|
|
setClass('col-module'),
|
|
set::name("modules[$i]"),
|
|
set::type('input'),
|
|
set::value(''),
|
|
set::placeholder($placeholder)
|
|
),
|
|
input
|
|
(
|
|
setClass('col-short'),
|
|
set::name("shorts[$i]"),
|
|
set::type('input'),
|
|
set::value(''),
|
|
set::placeholder($lang->tree->short)
|
|
),
|
|
input
|
|
(
|
|
setClass('hidden'),
|
|
set::name("branch[$i]"),
|
|
set::value(0),
|
|
set::control('hidden')
|
|
)
|
|
),
|
|
batchActions()
|
|
)
|
|
);
|
|
}
|
|
|
|
$parentPath = array();
|
|
$parentPath[] = span
|
|
(
|
|
a
|
|
(
|
|
setClass('tree-link'),
|
|
set('href', helper::createLink('tree', 'browse', "rootID=$root->id&view={$viewType}¤tModuleID=0&branch=$branch")),
|
|
$root->name
|
|
),
|
|
h::i
|
|
(
|
|
setClass('icon icon-angle-right muted align-middle'),
|
|
setStyle('color', '#313C52')
|
|
)
|
|
);
|
|
foreach($parentModules as $module)
|
|
{
|
|
$parentPath[] = span
|
|
(
|
|
a
|
|
(
|
|
setClass('tree-link'),
|
|
set('href', helper::createLink('tree', 'browse', "rootID=$root->id&view={$viewType}¤tModuleID=$module->id&branch=$branch")),
|
|
$module->name
|
|
),
|
|
h::i
|
|
(
|
|
setClass('icon icon-angle-right muted align-middle'),
|
|
setStyle('color', '#313C52')
|
|
)
|
|
);
|
|
}
|
|
|
|
div
|
|
(
|
|
setClass('flex gap-x-4 mb-3'),
|
|
!isInModal() ? backBtn
|
|
(
|
|
set::icon('back'),
|
|
set::type('secondary'),
|
|
$lang->goback
|
|
) : null,
|
|
div
|
|
(
|
|
setClass('entity-label flex items-center gap-x-2 entity-title text-lg font-bold'),
|
|
$lang->tree->common . $lang->hyphen . $root->name
|
|
)
|
|
);
|
|
|
|
div
|
|
(
|
|
setClass('flex gap-x-4'),
|
|
div
|
|
(
|
|
setClass('sidebar sidebar-left basis-2/6'),
|
|
panel
|
|
(
|
|
set::title($lang->tree->child),
|
|
setStyle('max-width', '400px'),
|
|
($app->tab == 'product' and $viewType == 'story') ? to::headingActions
|
|
(
|
|
btn
|
|
(
|
|
set
|
|
(
|
|
array
|
|
(
|
|
'class' => 'btn primary size-sm',
|
|
'url' => createLink('tree', 'viewHistory', "productID=$rootID"),
|
|
'data-toggle' => 'modal'
|
|
)
|
|
),
|
|
$lang->history
|
|
)
|
|
) : null,
|
|
treeEditor
|
|
(
|
|
set('type', $viewType),
|
|
set('items', $tree),
|
|
set('canEdit', common::hasPriv('tree', 'edit') && $canBeChanged),
|
|
set('canDelete', common::hasPriv('tree', 'delete') && $canBeChanged)
|
|
)
|
|
)
|
|
),
|
|
div
|
|
(
|
|
setClass('basis-4/6'),
|
|
panel
|
|
(
|
|
set::shadow(false),
|
|
set::title($manageTitle),
|
|
div
|
|
(
|
|
setClass('flex'),
|
|
div
|
|
(
|
|
setClass('p-1 tree-item-content'),
|
|
setStyle('max-width', '400px'),
|
|
$parentPath
|
|
),
|
|
form
|
|
(
|
|
setClass('flex-1 form-horz'),
|
|
set::url(helper::createLink('tree', 'manageChild', "root=$root->id&viewType=$viewType")),
|
|
$moduleRows,
|
|
set::actionsClass('justify-start'),
|
|
set::submitBtnText($lang->save),
|
|
formGroup
|
|
(
|
|
setClass('hidden'),
|
|
set::name('parentModuleID'),
|
|
set::value($currentModuleID),
|
|
set::control('hidden')
|
|
),
|
|
formGroup
|
|
(
|
|
setClass('hidden'),
|
|
set::name('maxOrder'),
|
|
set::value($maxOrder),
|
|
set::control('hidden')
|
|
)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
);
|
|
|
|
render();
|