| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?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->mailto;?></th>
- <td>
- <div class="input-group">
- <?php echo html::select('mailto[]', $users, '', "class='form-control picker-select' data-placeholder='{$lang->chooseUsersToMail}' multiple");?>
- <?php echo $this->fetch('my', 'buildContactLists');?>
- </div>
- </td>
- </tr>
- <tr>
- <th><?php echo $lang->feedback->keywords;?></th>
- <td><?php echo html::input('keywords', '', "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';?>
|