createspace.html.php 716 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * The createSpace view file of doc module of ZenTaoPMS.
  4. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  5. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  6. * @author Yidong Wang<yidong@chandao.com>
  7. * @package doc
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. formPanel
  12. (
  13. set::title($lang->doc->createSpace),
  14. set::actions(false),
  15. formGroup
  16. (
  17. set::label($lang->doclib->spaceName),
  18. set::width('5/6'),
  19. inputGroup(input(set::name('name')), btn(setClass('primary'), set::btnType('submit'), $lang->save))
  20. )
  21. );