| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- /**
- * The editLib view file of doc 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 Shujie Tian<tianshujie@easycorp.ltd>
- * @package doc
- * @link https://www.zentao.net
- */
- namespace zin;
- $libType = $lib->type;
- $defaultAcl = $lib->acl;
- if(!empty($lib->main) && $lib->type != 'mine') $defaultAcl = 'default';
- jsVar('doclibID', $lib->id);
- jsVar('libType', $libType);
- $isSpace = ($lib->type == 'custom' || $lib->type == 'mine') && $lib->parent == 0;
- modalHeader(set::title($isSpace ? $lang->doclib->editSpace : $lang->doc->editLib), set::entityID($lib->id), set::entityText($lib->name));
- formPanel
- (
- on::change('[name^=users]', 'checkObjectPriv'),
- in_array($lib->type, array('product', 'project', 'execution')) ? formGroup
- (
- set::label($lang->doc->{$lib->type}),
- set::control('static'),
- set::value($object->name)
- ) : null,
- formHidden('product', $lib->product),
- formHidden('project', $lib->project),
- formHidden('execution', $lib->execution),
- formGroup
- (
- set::label($isSpace ? $lang->doclib->spaceName : $lang->doc->libName),
- set::name('name'),
- set::value($lib->name),
- radioList
- (
- setClass('hidden'),
- set::name('acl'),
- set::items($lang->doc->libTypeList),
- set::value($libType)
- )
- ),
- formRow
- (
- $isSpace ? setClass('hidden') : null,
- setID('aclBox'),
- formGroup
- (
- set::label($lang->doclib->control),
- radioList
- (
- set::name('acl'),
- set::items($lib->type == 'api' ? $lang->api->aclList : $lang->doclib->aclList),
- set::value($defaultAcl),
- on::change("toggleAcl('lib')")
- )
- )
- ),
- formRow
- (
- setID('whiteListBox'),
- setClass('hidden'),
- formGroup
- (
- set::label($lang->doc->whiteList),
- div
- (
- setClass('w-full check-list'),
- div
- (
- setClass('w-full'),
- inputGroup
- (
- $lang->doclib->group,
- picker
- (
- set::name('groups[]'),
- set::items($groups),
- set::value($lib->groups),
- set::multiple(true)
- )
- )
- ),
- div
- (
- setClass('w-full'),
- userPicker(set::label($lang->doclib->user), set::items($users), set::value($lib->users))
- )
- )
- )
- )
- );
- /* ====== Render page ====== */
- render();
|