waring.htm.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. /**
  3. * The install view file of extension module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package extension
  9. * @version $Id$
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.lite.html.php';?>
  14. <div id='mainContent' class='main-content'>
  15. <div class='center-block'>
  16. <div class='main-header'>
  17. <h2>
  18. <span class='prefix' title='EXTENSION'><?php echo html::icon($lang->icons['extension']);?></span>
  19. <strong title='<?php echo $title;?>'><?php echo $title;?></strong>
  20. </h2>
  21. </div>
  22. <?php if($error):?>
  23. <div class='alert alert-danger with-icon'>
  24. <i class='icon-exclamation-sign'></i>
  25. <div class='content'>
  26. <h3><?php echo $lang->extension->waringInstall;?></h3>
  27. <p><?php echo $error;?></p>
  28. <p class='text-center'><?php echo html::commonButton($lang->extension->refreshPage, 'onclick=location.href=location.href', 'btn btn-primary');?></p>
  29. </div>
  30. </div>
  31. <?php endif;?>
  32. </div>
  33. </div>
  34. </body>
  35. </html>