planmodal.html.php 688 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * The plan modal view file of admin 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 Jialiang Zhang <zhangjialiang@chandao.com>
  8. * @package admin
  9. * @link https://www.zentao.net
  10. */
  11. namespace zin;
  12. modalHeader(set::title($this->lang->admin->community->uxPlanTitle));
  13. $uxPlan = '';
  14. $uxPlanFile = $this->app->getAppRoot() . 'www/uxplan.html';
  15. if(file_exists($uxPlanFile))
  16. {
  17. $uxPlan = file_get_contents($uxPlanFile);
  18. }
  19. echo $uxPlan;