本文整理汇总了PHP中testplan::getTestPlanAllResult方法的典型用法代码示例。如果您正苦于以下问题:PHP testplan::getTestPlanAllResult方法的具体用法?PHP testplan::getTestPlanAllResult怎么用?PHP testplan::getTestPlanAllResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testplan
的用法示例。
在下文中一共展示了testplan::getTestPlanAllResult方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: init_args
<?php
require_once "../../config.inc.php";
require_once "common.php";
testlinkInitPage($db, false, false, "checkRights");
$templateCfg = templateConfiguration();
$args = init_args();
$gui = new stdClass();
$tplan_mgr = new testplan($db);
$tplanid = isset($_GET['tplanid']) ? $_GET['tplanid'] : 1;
$dcnresult = $tplan_mgr->getTestPlanAllResult($tplanid);
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->assign('tplanid', $tplanid);
$smarty->assign('result', $dcnresult);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
function init_args()
{
$args = new stdClass();
$args->testproject_id = isset($_SESSION['testprojectID']) ? $_SESSION['testprojectID'] : 0;
$args->currentUser = $_SESSION['currentUser'];
$args->username = $_SESSION['currentUser']->getDisplayName();
return $args;
}
function checkRights(&$db, &$user)
{
return True;
}