emptycollect.html.php 716 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * The browse view file of company 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 Mengyi Liu <liumengyi@easycorp.ltd>
  7. * @package company
  8. * @link https://www.zentao.net
  9. */
  10. namespace zin;
  11. featureBar
  12. (
  13. set::load(''),
  14. set::current($scope),
  15. set::linkParams("scope={key}")
  16. );
  17. div
  18. (
  19. setStyle('flex', '1 1 auto'),
  20. dtable
  21. (
  22. set::cols(array()),
  23. set::data(array()),
  24. set::emptyTip($lang->metric->emptyCollect)
  25. )
  26. );
  27. render();