32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* The set notice view file of workflowaction module of ZDOO.
|
|
*
|
|
* @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license 商业软件,非开源软件
|
|
* @author Tingting Dai <daitingting@xirangit.com>
|
|
* @package workflowaction
|
|
* @version $Id$
|
|
* @link http://www.zdoo.com
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.modal.html.php';?>
|
|
<form id='ajaxForm' method='post' action='<?php echo inlink('setNotice', "id=$action->id");?>'>
|
|
<table class='table table-form' id='noticeTable'>
|
|
<tr>
|
|
<th class='w-70px text-right'><?php echo $lang->workflowaction->toList;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::select('toList[]', $users, $action->toList, "class='form-control chosen' data-placeholder='{$lang->chooseUserToMail}' multiple");?>
|
|
<?php echo $this->fetch('my', 'buildContactLists');?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td class='form-actions'><?php echo baseHTML::submitButton();?></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?php include '../../common/view/footer.modal.html.php';?>
|