batchchangeparent.html.php 655 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * The UI file of story module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
  6. * @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author sunguangming <sunguangming@easycorp.ltd>
  8. * @package story
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. modalHeader(set::title($lang->story->batchChangeParent));
  13. formPanel(formGroup
  14. (
  15. set::label($lang->story->parent),
  16. picker
  17. (
  18. set::name('parent'),
  19. set::items($parents),
  20. set::required(true)
  21. )
  22. ));