| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * The cases view file of deploy 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 deploy
- * @version $Id$
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <div id='mainMenu' class='clearfix'>
- <?php include './nav.html.php';?>
- <div class='btn-toolbar pull-right'>
- <?php
- $browseLink = $this->session->stepList ? $this->session->stepList : inlink('steps', "deployID=$deploy->id");
- $params = "deployID=$deploy->id";
- common::printLink('deploy', 'linkCases', $params, "<i class='icon icon-link'></i> " . $lang->deploy->linkCases, '', "class='btn btn-primary'");
- echo html::linkButton("<i class='icon-back icon-level-up icon-large icon-rotate-270'></i> " . $lang->goback, $browseLink, 'self', '', 'btn btn-secondary');
- ?>
- </div>
- </div>
- <?php if(empty($cases)):?>
- <div class='table-empty-tip'><?php echo $lang->noData;?></div>
- <?php else:?>
- <div id='mainContent'>
- <form class='main-table' method='post' data-ride='table' target='hiddenwin' action='<?php echo $this->createLink('deploy', 'batchUnlinkCases', "deployID={$deploy->id}")?>'>
- <table class='table table-condensed table-fixed'>
- <thead>
- <tr>
- <th class="w-100px">
- <?php if(common::hasPriv('deploy', 'batchUnlinkCases')):?>
- <div class="checkbox-primary check-all" title="<?php echo $lang->selectAll?>">
- <label></label>
- </div>
- <?php endif;?>
- <?php echo $lang->idAB?>
- </th>
- <th class='w-pri'><?php echo $lang->priAB?></th>
- <th><?php echo $lang->testcase->title?></th>
- <th class='w-70px'><?php echo $lang->testcase->type?></th>
- <th class='w-50px'><?php echo $lang->actions?></th>
- <tr>
- </thead>
- <tbody>
- <?php foreach($cases as $case):?>
- <tr>
- <td class='c-id'>
- <?php if(common::hasPriv('deploy', 'batchUnlinkCases')):?>
- <?php echo html::checkbox('idList', array($case->id => $case->id));?>
- <?php endif;?>
- </td>
- <td><span class="label-pri label-pri-<?php echo $case->pri?>"><?php echo zget($lang->testcase->priList, $case->pri)?></span></td>
- <td title='<?php echo $case->title?>'><?php echo html::a($this->createLink('testcase', 'view', "id={$case->id}"), $case->title);?></td>
- <td><?php echo zget($lang->testcase->typeList, $case->type, '');?></td>
- <td class='c-actions'><?php common::printLink('deploy', 'unlinkCase', "deploy=$deploy->id&id=$case->id", "<i class='icon icon-unlink'></i>", 'hiddenwin', "class='btn' title='{$lang->unlink}'");?></td>
- </tr>
- <?php endforeach;?>
- </tbody>
- </table>
- <?php if(common::hasPriv('deploy', 'batchUnlinkCases') and $cases):?>
- <div class='table-footer'>
- <div class="checkbox-primary check-all"><label><?php echo $lang->selectAll?></label></div>
- <div class='table-actions btn-toolbar'>
- <?php echo html::submitButton($lang->deploy->unlinkCase, '', 'btn btn-primary');?>
- </div>
- </div>
- <?php endif;?>
- </form>
- </div>
- <?php endif;?>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|