Files
EasySoft-ZenTaoPMS/module/qa/control.php
2022-06-08 09:34:46 +08:00

36 lines
1.3 KiB
PHP

<?php
/**
* The control file of qa module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html) or AGPL
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package qa
* @version $Id: control.php 4129 2013-01-18 01:58:14Z wwccss $
* @link http://www.zentao.net
*/
class qa extends control
{
/**
* The index of qa, go to bug's browse page.
*
* @access public
* @return void
*/
public function index($locate = 'auto', $productID = 0, $projectID = 0)
{
$products = $this->loadModel('product')->getProductPairsByProject($projectID, 'noclosed');
if(empty($products)) return print($this->locate($this->createLink('product', 'showErrorNone', "moduleName=qa&activeMenu=index")));
if($locate == 'yes') $this->locate($this->createLink('bug', 'browse'));
$productID = $this->product->saveState($productID, $products);
$branch = (int)$this->cookie->preBranch;
$this->qa->setMenu($products, $productID, $branch);
$this->view->title = $this->lang->qa->index;
$this->view->position[] = $this->lang->qa->index;
$this->view->products = $products;
$this->display();
}
}