本文整理汇总了PHP中testcase::get_export_file_types方法的典型用法代码示例。如果您正苦于以下问题:PHP testcase::get_export_file_types方法的具体用法?PHP testcase::get_export_file_types怎么用?PHP testcase::get_export_file_types使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类testcase
的用法示例。
在下文中一共展示了testcase::get_export_file_types方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: downloadContentsToFile
} else {
$content = TL_XMLEXPORT_HEADER;
$content .= $tsuite_mgr->{$pfn}($args->container_id, $args->tproject_id, $optExport);
}
downloadContentsToFile($content, $gui->export_filename);
exit;
}
}
if ($args->useRecursion) {
// we are working on a testsuite
$obj_mgr = new testsuite($db);
} else {
$obj_mgr = new testcase($db);
}
$gui->object_name = $node['name'];
$gui->exportTypes = $obj_mgr->get_export_file_types();
$gui->tproject_name = $args->tproject_name;
$gui->tproject_id = $args->tproject_id;
$gui->tcID = $args->tcase_id;
$gui->useRecursion = $args->useRecursion ? 1 : 0;
$gui->tcVersionID = $args->tcversion_id;
$gui->containerID = $args->container_id;
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
/*
function: init_args
args:
returns:
*/