79 lines
3.5 KiB
PHP
79 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* The editReport view file of report module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2014 QingDao Nature Easy Soft Network Technology Co,LTD (www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Yidong Wang <yidong@cnezsoft.com>
|
|
* @package report
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . 'common/view/header.lite.html.php';?>
|
|
<?php include $app->getModuleRoot() . 'common/view/chosen.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='main-header'>
|
|
<h2><?php echo $lang->report->editReport?></h2>
|
|
</div>
|
|
<form method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->crystal->name?></th>
|
|
<td>
|
|
<ul class='nav nav-tabs'>
|
|
<?php $clientLang = $this->app->getClientLang();?>
|
|
<?php foreach($config->langs as $langKey => $currentLang):?>
|
|
<?php $active = $langKey == $clientLang ? 'active' : ''?>
|
|
<li class='<?php echo $active?>'><?php echo html::a('#'. str_replace('-', '_', $langKey), $currentLang, '', "data-toggle='tab'")?></li>
|
|
<?php endforeach?>
|
|
</ul>
|
|
<div class='tab-content'>
|
|
<?php foreach($config->langs as $langKey => $currentLang):?>
|
|
<?php $active = $langKey == $clientLang ? 'active' : ''?>
|
|
<div class='tab-pane <?php echo $active?>' id='<?php echo str_replace('-', '_', $langKey)?>'>
|
|
<?php echo html::input("name[$langKey]", zget($report->name, $langKey, ''), "class='form-control'")?>
|
|
</div>
|
|
<?php endforeach?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->crystal->code?></th>
|
|
<td><?php echo html::input('code', $report->code, "class='form-control' placeholder='{$lang->crystal->codePlaceholder}'")?></td>
|
|
</tr>
|
|
<?php if(strpos($report->module, 'cmmi') === false):?>
|
|
<tr>
|
|
<th><?php echo $lang->crystal->module?></th>
|
|
<td><?php echo html::select('module[]', $lang->crystal->moduleList, $report->module, "class='form-control chosen' multiple")?></td>
|
|
</tr>
|
|
<?php endif;?>
|
|
<tr>
|
|
<th><?php echo $lang->crystal->desc?></th>
|
|
<td>
|
|
<ul class='nav nav-tabs'>
|
|
<?php $desc = json_decode($report->desc, true);?>
|
|
<?php foreach($config->langs as $langKey => $currentLang):?>
|
|
<?php $active = $langKey == $clientLang ? 'active' : ''?>
|
|
<li class='<?php echo $active?>'><?php echo html::a('#desc'. str_replace('-', '_', $langKey), $currentLang, '', "data-toggle='tab'")?></li>
|
|
<?php endforeach?>
|
|
</ul>
|
|
<div class='tab-content'>
|
|
<?php foreach($config->langs as $langKey => $currentLang):?>
|
|
<?php $active = $langKey == $clientLang ? 'active' : ''?>
|
|
<div class='tab-pane <?php echo $active?>' id='desc<?php echo str_replace('-', '_', $langKey)?>'>
|
|
<textarea name="desc[<?php echo $langKey?>]" id="desc<?php echo $langKey?>" class="form-control" rows="5" style="height:auto"><?php echo zget($desc, $langKey, '')?></textarea>
|
|
</div>
|
|
<?php endforeach?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td><?php echo html::submitButton();?></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.lite.html.php';?>
|