setnotice.html.php 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * The set notice view file of workflowaction module of ZDOO.
  4. *
  5. * @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license 商业软件,非开源软件
  7. * @author Tingting Dai <daitingting@xirangit.com>
  8. * @package workflowaction
  9. * @version $Id$
  10. * @link http://www.zdoo.com
  11. */
  12. ?>
  13. <?php include '../../common/view/header.modal.html.php';?>
  14. <form id='ajaxForm' method='post' action='<?php echo inlink('setNotice', "id=$action->id");?>'>
  15. <table class='table table-form' id='noticeTable'>
  16. <tr>
  17. <th class='w-70px text-right'><?php echo $lang->workflowaction->toList;?></th>
  18. <td>
  19. <div class='input-group'>
  20. <?php echo html::select('toList[]', $users, $action->toList, "class='form-control chosen' data-placeholder='{$lang->chooseUserToMail}' multiple");?>
  21. <?php echo $this->fetch('my', 'buildContactLists');?>
  22. </div>
  23. </td>
  24. </tr>
  25. <tr>
  26. <th></th>
  27. <td class='form-actions'><?php echo html::submitButton();?></td>
  28. </tr>
  29. </table>
  30. </form>
  31. <?php include '../../common/view/footer.modal.html.php';?>