m.ajaxsethomepage.html.php 821 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * The setIndexPage view file of custom module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Yidong Wang <yidong@cnezsoft.com>
  8. * @package custom
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/m.header.lite.html.php';?>
  14. <script>
  15. var result = confirm('<?php echo $this->lang->custom->notice->indexPage[$module];?>');
  16. $.get(createLink('custom', 'ajaxSetHomepage', 'module=<?php echo $module?>&page=' + (result ? 'index' : 'browse')), function(){location.reload(true)});
  17. </script>
  18. <?php include '../../common/view/m.footer.html.php';?>