checkscore.html.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  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><?php echo $title;?></strong>
  20. </h2>
  21. </div>
  22. <?php if(isset($error) and $error):?>
  23. <div class='alert alert-success with-icon'>
  24. <i class='icon-check-circle'></i>
  25. <div class='content'>
  26. <h3><?php echo $lang->extension->needSorce;?></h3>
  27. <p><?php echo $error;?></p>
  28. </div>
  29. </div>
  30. <?php endif;?>
  31. </div>
  32. </div>
  33. </body>
  34. </html>