64 lines
2.2 KiB
PHP
64 lines
2.2 KiB
PHP
<?php
|
|
/**
|
|
* The copy view file of workflow module of ZDOO.
|
|
*
|
|
* @copyright Copyright 2009-2016 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license 商业软件,非开源软件
|
|
* @author Gang Liu <liugang@cnezsoft.com>
|
|
* @package workflow
|
|
* @version $Id$
|
|
* @link http://www.zdoo.com
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.modal.html.php';?>
|
|
<?php js::set('currentModule', '');?>
|
|
<form id='ajaxForm' method='post' action='<?php echo inlink('copy', "source=$source->module");?>'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-80px'><?php echo $lang->workflow->source;?></th>
|
|
<td><?php echo $source->name;?></td>
|
|
<td class='w-40px'></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->workflow->name;?></th>
|
|
<td><?php echo html::input('name', '', "class='form-control'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->workflow->module;?></th>
|
|
<td><?php echo html::input('module', '', "class='form-control' placeholder='{$lang->workflow->placeholder->module}'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->workflow->app;?></th>
|
|
<td><?php echo html::select('app', $apps, '', "class='form-control chosen'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->workflow->position;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<select class='form-control' name='positionModule' id='positionModule'></select>
|
|
<span class='input-group-addon fix-border'></span>
|
|
<?php echo html::select('position', $lang->workflow->positionList, '', "class='form-control'");?>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->workflow->desc;?></th>
|
|
<td><?php echo html::textarea('desc', '', "rows='2' class='form-control'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td class='form-actions'>
|
|
<?php echo html::hidden('type', $source->type);?>
|
|
<?php echo baseHTML::submitButton();?>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
<?php include '../../common/view/footer.modal.html.php';?>
|