changelog.html.php 854 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * The create client view file of setting module of XXB.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
  6. * @license ZOSL (https://zpl.pub/page/zoslv1.html)
  7. * @author Sun Hao <sunhao@cnezsoft.com>
  8. * @package client
  9. * @version $Id$
  10. * @link https://xuanim.com
  11. */
  12. ?>
  13. <?php include '../../common/view/header.modal.html.php';?>
  14. <?php $viewId = 'clientView-' . $client->id; ?>
  15. <?php js::set('client_' . $client->id, $client)?>
  16. <div id='<?php echo $viewId;?>' class='article-content'>
  17. </div>
  18. <style>#<?php echo $viewId;?>{padding: 0}</style>
  19. <script>
  20. $(function()
  21. {
  22. $('#<?php echo $viewId;?>').html(window.marked(v['client_<?php echo $client->id;?>'].changeLog));
  23. });
  24. </script>
  25. <?php include '../../common/view/footer.modal.html.php';?>