本文整理汇总了PHP中testplan::copyFailType方法的典型用法代码示例。如果您正苦于以下问题:PHP testplan::copyFailType方法的具体用法?PHP testplan::copyFailType怎么用?PHP testplan::copyFailType使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testplan
的用法示例。
在下文中一共展示了testplan::copyFailType方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: checkRights
<?php
header("Content-Type:text/html;charset=utf-8");
require_once "../../config.inc.php";
require_once "common.php";
testlinkInitPage($db, false, false, "checkRights");
$testproject_id = isset($_SESSION['testprojectID']) ? $_SESSION['testprojectID'] : 0;
$oldexec = $_GET['oldexec'];
$newexec = $_GET['newexec'];
if (is_null($_GET['confirm'])) {
echo "<script>if(window.confirm('注意:右侧版本2的分析结论将直接继承使用左侧版本1,请确认fail是同一个原因引起!!')) location.href='copyBuildFailType.php?oldexec={$oldexec}&newexec={$newexec}&confirm=yes';else location.href='copyBuildFailType.php?oldexec={$oldexec}&newexec={$newexec}&confirm=no';</script>";
} else {
$confirm = $_GET['confirm'];
if ($confirm == 'yes') {
$tplan_mgr = new testplan($db);
// $platform_mgr = new tlPlatform($db, $testproject_id);
// $result = $platform_mgr->jobtrash($jobid);
$result = $tplan_mgr->copyFailType($oldexec, $newexec);
if ($result == 1) {
echo '<script type="text/javascript">window.alert("复制分析结果成功!若完成所有分析工作,请点击左侧按钮刷新查看");</script>';
} else {
echo '<script type="text/javascript">window.alert("复制分析结果失败,请检查后重试!");</script>';
}
} else {
echo '<script type="text/javascript">window.alert("Canneled");</script>';
}
}
function checkRights(&$db, &$user)
{
return True;
}