133 lines
5.6 KiB
PHP
133 lines
5.6 KiB
PHP
<?php
|
|
/**
|
|
* The create view file of feedback module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Yidong Wang <yidong@cnezsoft.com>
|
|
* @package feedback
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
|
|
<?php include $app->getModuleRoot() . 'common/view/chosen.html.php';?>
|
|
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
|
|
<?php js::set('productID', (!empty($productID) and $productID !== 'all') ? $productID : 0);?>
|
|
<?php js::set('moduleID', !empty($moduleID) ? $moduleID : 0);?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='main-header'>
|
|
<h2><?php echo $lang->feedback->create?></h2>
|
|
</div>
|
|
<form method='post' class='form-ajax' enctype='multipart/form-data'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->feedback->product?></th>
|
|
<td><?php echo html::select('product', $products, (!empty($productID) and $productID !== 'all') ? $productID : '', "class='form-control chosen'")?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->feedback->module;?></th>
|
|
<td><?php echo html::select('module', '', '', "class='form-control chosen'")?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->feedback->type?></th>
|
|
<td><?php echo html::select('type', $lang->feedback->typeList, '', "class='form-control chosen'")?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->title?></th>
|
|
<td colspan='2'>
|
|
<div class='input-group'>
|
|
<?php echo html::input('title', '', "class='form-control'")?>
|
|
<span class='input-group-addon'>
|
|
<div class='checkbox-primary'>
|
|
<input type='checkbox' id='public' name='public' value='1' checked/>
|
|
<label for='notify'><?php echo $lang->feedback->public?></label>
|
|
</div>
|
|
</span>
|
|
<?php // begin print pri selector?>
|
|
<span class="input-group-addon fix-border br-0"><?php echo $lang->feedback->pri;?></span>
|
|
<?php
|
|
$hasCustomPri = false;
|
|
foreach($lang->feedback->priList as $priKey => $priValue)
|
|
{
|
|
if(!empty($priKey) and (string)$priKey != (string)$priValue)
|
|
{
|
|
$hasCustomPri = true;
|
|
break;
|
|
}
|
|
}
|
|
$priList = $lang->feedback->priList;
|
|
if(end($priList)) unset($priList[0]);
|
|
if(!isset($priList[$pri]))
|
|
{
|
|
reset($priList);
|
|
$pri = key($priList);
|
|
}
|
|
?>
|
|
<?php if($hasCustomPri):?>
|
|
<?php echo html::select('pri', (array)$priList, $pri, "class='form-control'");?>
|
|
<?php else: ?>
|
|
<div class="input-group-btn pri-selector" data-type="pri">
|
|
<button type="button" class="btn dropdown-toggle br-0" data-toggle="dropdown">
|
|
<span class="pri-text"><span class="label-pri label-pri-<?php echo empty($pri) ? '0' : $pri?>" title="<?php echo $pri?>"><?php echo $pri?></span></span> <span class="caret"></span>
|
|
</button>
|
|
<div class='dropdown-menu pull-right'>
|
|
<?php echo html::select('pri', (array)$priList, $pri, "class='form-control' data-provide='labelSelector' data-label-class='label-pri'");?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php // end print pri selector ?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->desc?></th>
|
|
<td colspan='2'>
|
|
<?php echo $this->fetch('user', 'ajaxPrintTemplates', 'type=feedback&link=desc');?>
|
|
<?php echo html::textarea('desc', '', "class='form-control'")?>
|
|
</td>
|
|
</tr>
|
|
<tr class='hide'>
|
|
<th><?php echo $lang->feedback->status;?></th>
|
|
<td><?php echo html::hidden('status', 'wait');?></td>
|
|
</tr>
|
|
<?php $this->printExtendFields('', 'table');?>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->feedbackBy;?></th>
|
|
<td><?php echo html::input('feedbackBy', '', "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->source;?></th>
|
|
<td><?php echo html::input('source', '', "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->notifyEmail;?></th>
|
|
<td><?php echo html::input('notifyEmail', '', "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->files;?></th>
|
|
<td><?php echo $this->fetch('file', 'buildform');?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->feedback->notify;?></th>
|
|
<td>
|
|
<div class='checkbox-primary'>
|
|
<input type='checkbox' id='notify' name='notify' value='1' checked />
|
|
<label for='notify'><?php echo $lang->feedback->mailNotify?></label>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='3' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::backButton();?>
|
|
<?php if($relation) echo html::hidden("{$relation->field}", $relation->prevDataID);?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|