本文整理汇总了PHP中initializeGui函数的典型用法代码示例。如果您正苦于以下问题:PHP initializeGui函数的具体用法?PHP initializeGui怎么用?PHP initializeGui使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了initializeGui函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: initScript
/**
*
*/
function initScript(&$dbHandler)
{
$mgr = new issueTrackerCommands($dbHandler);
$args = init_args(array('doAction' => $mgr->getGuiOpWhiteList()));
$gui = initializeGui($dbHandler, $args, $mgr);
return array($args, $gui, $mgr);
}
示例2: testlinkInitPage
// things does not work.
// ---------------------------------------------------------------------
require_once '../../third_party/codeplex/PHPExcel.php';
// Must be included BEFORE common.php
require_once 'common.php';
require_once "lang_api.php";
require_once 'results.class.php';
require_once 'displayMgr.php';
testlinkInitPage($db);
$templateCfg = templateConfiguration();
$args = init_args();
checkRights($db, $_SESSION['currentUser'], $args);
$labels = getLabels();
$tplan_mgr = new testPlanUrgency($db);
list($tproject_info, $tplan_info) = getAncestorsInfo($db, $tplan_mgr, $args->tproject_id, $args->tplan_id);
$gui = initializeGui($args, $tplan_mgr, $tproject_info, $tplan_info);
if (is_null($args->doReport) || is_null($args->build_id)) {
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
exit;
// Not needed just to remember that execution will not continue
}
$cfg = getCfg($gui);
$not_run_label = lang_get($cfg['results']['status_label']['not_run']);
$i18n = array(lang_get($cfg['results']['status_label']['failed']) => PHPExcel_Style_Color::COLOR_RED, lang_get($cfg['results']['status_label']['passed']) => PHPExcel_Style_Color::COLOR_GREEN);
$testCaseCfg = config_get('testcase_cfg');
$testCasePrefix = $tproject_info['prefix'] . $testCaseCfg->glue_character;
$re = new results($db, $tplan_mgr, $tproject_info, $tplan_info, ALL_TEST_SUITES, ALL_BUILDS, ALL_PLATFORMS);
// Get Results on map with access key = test case's parent test suite id
$executionsMap = $re->getSuiteList();
示例3: microtime
* @author Martin Havlat <havlat at users.sourceforge.net>
*
* Show Test Results over all Builds.
*
* @internal revisions
* @since 1.9.6
*
*/
require '../../config.inc.php';
require_once 'common.php';
require_once 'displayMgr.php';
$timerOn = microtime(true);
$templateCfg = templateConfiguration();
$args = init_args($db);
$tplan_mgr = new testplan($db);
$gui = initializeGui($db, $args, $tplan_mgr);
$mailCfg = buildMailCfg($gui);
$metricsMgr = new tlTestPlanMetrics($db);
$dummy = $metricsMgr->getStatusTotalsByTopLevelTestSuiteForRender($args->tplan_id);
if (is_null($dummy)) {
// no test cases -> no report
$gui->do_report['status_ok'] = 0;
$gui->do_report['msg'] = lang_get('report_tspec_has_no_tsuites');
tLog('Overall Metrics page: no test cases defined');
} else {
// do report
$gui->statistics->testsuites = $dummy->info;
$gui->do_report['status_ok'] = 1;
$gui->do_report['msg'] = '';
$items2loop = array('testsuites', 'keywords');
$keywordsMetrics = $metricsMgr->getStatusTotalsByKeywordForRender($args->tplan_id);
示例4: testlinkInitPage
* @copyright 2005-2013, TestLink community
* @filesource platformsExport.php
* @link http://www.teamst.org/index.php
* @uses config.inc.php
*
* @internal revisions
* @since 1.9.9
* 20130930 - franciscom - goback_url input parameter removed, to avoid XSS attack
*/
require_once "../../config.inc.php";
require_once "common.php";
require_once '../../third_party/adodb_xml/class.ADODB_XML.php';
testlinkInitPage($db, false, false, "checkRights");
$templateCfg = templateConfiguration();
$args = init_args();
$gui = initializeGui($args);
switch ($args->doAction) {
case 'doExport':
doExport($db, $gui->export_filename, $args->testproject_id);
break;
default:
break;
}
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
/**
*
*/
function init_args()
{
示例5: testlinkInitPage
*
* @internal revisions
* since 1.9.3
*
**/
require_once '../../config.inc.php';
require_once 'common.php';
require_once "users.inc.php";
require_once 'treeMenu.inc.php';
require_once 'exec.inc.php';
testlinkInitPage($db);
$templateCfg = templateConfiguration();
$chronos[] = $tstart = microtime(true);
$control = new tlTestCaseFilterControl($db, 'execution_mode');
$control->formAction = '';
$gui = initializeGui($control);
$control->build_tree_menu($gui);
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->assign('control', $control);
$smarty->assign('menuUrl', $gui->menuUrl);
$smarty->assign('args', $gui->args);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
/**
*
*
*/
function initializeGui(&$control)
{
$gui = new stdClass();
// This logic is managed from execSetResults.php
示例6: getWebEditorCfg
require_once "web_editor.php";
$editorCfg = getWebEditorCfg('build');
require_once require_web_editor($editorCfg['type']);
testlinkInitPage($db, false, false, "checkRights");
$templateCfg = templateConfiguration();
$date_format_cfg = config_get('date_format');
$op = new stdClass();
$op->user_feedback = '';
$op->buttonCfg = new stdClass();
$op->buttonCfg->name = "";
$op->buttonCfg->value = "";
$smarty = new TLSmarty();
$tplan_mgr = new testplan($db);
$build_mgr = new build_mgr($db);
$args = init_args($_REQUEST, $_SESSION, $date_format_cfg);
$gui = initializeGui($args, $build_mgr);
$of = web_editor('notes', $_SESSION['basehref'], $editorCfg);
$of->Value = getItemTemplateContents('build_template', $of->InstanceName, $args->notes);
$op = new stdClass();
$op->operation_descr = '';
$op->user_feedback = '';
$op->buttonCfg = '';
$op->status_ok = 1;
switch ($args->do_action) {
case 'edit':
$op = edit($args, $build_mgr, $date_format_cfg);
$gui->closed_on_date = $args->closed_on_date;
$of->Value = $op->notes;
break;
case 'create':
$op = create($args);
示例7: require_web_editor
require_once require_web_editor($editorCfg['type']);
testlinkInitPage($db, false, false, "checkRights");
$templateCfg = templateConfiguration();
$tplan_mgr = new testplan($db);
$tproject_mgr = new testproject($db);
$smarty = new TLSmarty();
$do_display = false;
$template = null;
$args = init_args($_REQUEST);
if (!$args->tproject_id) {
$smarty->assign('title', lang_get('fatal_page_title'));
$smarty->assign('content', lang_get('error_no_testprojects_present'));
$smarty->display('workAreaSimple.tpl');
exit;
}
$gui = initializeGui($db, $args, $editorCfg, $tproject_mgr);
$of = web_editor('notes', $_SESSION['basehref'], $editorCfg);
$of->Value = getItemTemplateContents('testplan_template', $of->InstanceName, $args->notes);
// Checks on testplan name, and testplan name<=>testplan id
if ($args->do_action == "do_create" || $args->do_action == "do_update") {
$gui->testplan_name = $args->testplan_name;
$name_exists = $tproject_mgr->check_tplan_name_existence($args->tproject_id, $args->testplan_name);
$name_id_rel_ok = isset($gui->tplans[$args->tplan_id]) && $gui->tplans[$args->tplan_id]['name'] == $args->testplan_name;
}
// interface changes to be able to do not loose CF values if some problem arise on User Interface
$gui->cfields = $tplan_mgr->html_table_of_custom_field_inputs($args->tplan_id, $args->tproject_id, 'design', '', $_REQUEST);
switch ($args->do_action) {
case 'fileUpload':
fileUploadManagement($db, $args->tplan_id, $args->fileTitle, $tplan_mgr->getAttachmentTableName());
getItemData($tplan_mgr, $gui, $of, $args->tplan_id, true);
break;
示例8: templateConfiguration
* 20110107 - asimon - added daisydiff (html diff engine which handles tags well)
*/
require_once "../../config.inc.php";
require_once "common.php";
// code for different diff engines
require '../../third_party/diff/diff.php';
require '../../third_party/daisydiff/src/HTMLDiff.php';
$templateCfg = templateConfiguration();
testlinkInitPage($db);
$smarty = new TLSmarty();
$labels = init_labels(array("num_changes" => null, "no_changes" => null, "diff_subtitle_req" => null, "version_short" => null, "diff_details_req" => null, "type" => null, "status" => null, "expected_coverage" => null, "revision_short" => null, "version_revision" => null));
$reqMgr = new requirement_mgr($db);
$differ = new diff();
$args = init_args();
checkRights($db, $_SESSION['currentUser'], $args);
$gui = initializeGui($db, $args, $labels, $reqMgr);
// if already two versions are selected, display diff
// else display template with versions to select
if ($args->compare_selected_versions) {
// Side By Side
$sbs = getItemsToCompare($args->left_item_id, $args->right_item_id, $gui->items);
prepareUserFeedback($db, $gui, $args->req_id, $labels, $sbs);
$gui->attrDiff = getAttrDiff($sbs['left_item'], $sbs['right_item'], $labels);
$cfields = getCFToCompare($sbs, $args->tproject_id, $reqMgr);
$gui->cfieldsDiff = null;
if (!is_null($cfields)) {
$gui->cfieldsDiff = getCFDiff($cfields, $reqMgr);
}
$gui->diff = array("scope" => array());
foreach ($gui->diff as $key => $val) {
// 20110107 - new diff engine
示例9: testlinkInitPage
*
* @internal revisions
*
*/
require_once "../../config.inc.php";
require_once "common.php";
require_once 'requirements.inc.php';
require_once 'xml.inc.php';
require_once 'csv.inc.php';
testlinkInitPage($db);
$templateCfg = templateConfiguration();
$req_spec_mgr = new requirement_spec_mgr($db);
$req_mgr = new requirement_mgr($db);
$args = init_args($db);
checkRights($db, $_SESSION['currentUser'], $args);
$gui = initializeGui($db, $args, $_SESSION, $req_spec_mgr, $req_mgr);
switch ($args->doAction) {
case 'uploadFile':
$dummy = doExecuteImport($gui->fileName, $args, $req_spec_mgr, $req_mgr);
$gui->items = $dummy->items;
$gui->file_check = $dummy->file_check;
$gui->importResult = $dummy->msg;
$gui->refreshTree = $args->refreshTree && $dummy->refreshTree;
break;
}
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
/**
* doExecuteImport
*
示例10: initializeEnv
function initializeEnv(&$dbHandler, $treeMgr)
{
$env = array();
$env[0] = init_args($treeMgr);
$env[1] = initializeGui($dbHandler, $env[0]);
$argsObj =& $env[0];
$guiObj =& $env[1];
$actionTpl = array('move_testsuite_viewer' => 'containerMove.tpl', 'delete_testsuite' => 'containerDelete.tpl', 'move_testcases_viewer' => 'containerMoveTC.tpl', 'do_copy_tcase_set' => 'containerMoveTC.tpl', 'delete_testcases' => 'containerDeleteTC.tpl', 'do_delete_testcases' => 'containerDeleteTC.tpl');
$actionGetData = array('edit_testsuite' => 0, 'new_testsuite' => 0, 'delete_testsuite' => 0, 'do_move' => 0, 'do_copy' => 0, 'reorder_testsuites' => 1, 'do_testsuite_reorder' => 0, 'add_testsuite' => 1, 'move_testsuite_viewer' => 0, 'update_testsuite' => 1, 'move_testcases_viewer' => 0, 'do_move_tcase_set' => 0, 'do_copy_tcase_set' => 0, 'del_testsuites_bulk' => 0, 'delete_testcases' => 0, 'do_delete_testcases' => 0, 'reorder_testcases' => 0, 'reorder_testsuites_alpha' => 0, 'reorder_testproject_testsuites_alpha' => 0);
$actionInitOptTransfer = array('edit_testsuite' => 1, 'new_testsuite' => 1, 'add_testsuite' => 1, 'update_testsuite' => 1);
$guiObj->tpl = null;
$guiObj->page_title = '';
$argsObj->action = null;
$argsObj->init_opt_transfer = null;
$argsObj->getUserInput = null;
foreach ($actionGetData as $key => $val) {
if (isset($_POST[$key])) {
$argsObj->action = $key;
$argsObj->init_opt_transfer = isset($actionInitOptTransfer[$argsObj->action]) ? 1 : 0;
$argsObj->getUserInput = $val;
$guiObj->tpl = isset($actionTpl[$argsObj->action]) ? $actionTpl[$argsObj->action] : null;
$guiObj->page_title = lang_get('container_title_testsuite');
break;
}
}
return $env;
}
示例11: dirname
/**
* TestLink Open Source Project - http://testlink.sourceforge.net/
* This script is distributed under the GNU General Public License 2 or later.
*
* @filesource issueTrackerView.php
* @author francisco.mancardi@gmail.com
* @since 1.9.4
*
* @internal revisions
*
**/
require_once dirname(__FILE__) . "/../../config.inc.php";
require_once "common.php";
testlinkInitPage($db);
$templateCfg = templateConfiguration();
$gui = initializeGui($db, $args = init_args($db));
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
/**
* @return object returns the arguments for the page
*/
function init_args(&$dbHandler)
{
$args = new stdClass();
$args->tproject_id = isset($_REQUEST['tproject_id']) ? intval($_REQUEST['tproject_id']) : 0;
$args->currentUser = $_SESSION['currentUser'];
$args->canManage = $_SESSION['currentUser']->hasRight($dbHandler, "issuetracker_management");
$args->user_feedback = array('type' => '', 'message' => '');
return $args;
}
示例12: testlinkInitPage
* 20101026 - Julian - BUGID 3930 - Localized dateformat for datepicker
* 20101022 - asimon - BUGID 3716 - replaced old separated inputs for day/month/year by ext js calendar
* 20101019 - eloff - BUGID 3794 - added contribution by rtessier
*
**/
require_once '../../config.inc.php';
require_once 'common.php';
require_once 'results.class.php';
require_once 'users.inc.php';
require_once 'displayMgr.php';
testlinkInitPage($db);
$templateCfg = templateConfiguration();
$date_format_cfg = config_get('date_format');
$args = init_args($db);
checkRights($db, $_SESSION['currentUser'], $args);
$gui = initializeGui($db, $args, $date_format_cfg);
$mailCfg = buildMailCfg($gui);
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->assign('report_type', $args->report_type);
displayReport($templateCfg->template_dir . $templateCfg->default_template, $smarty, $args->report_type, $mailCfg);
/**
* initialize Gui
*/
function initializeGui(&$dbHandler, &$argsObj, $dateFormat)
{
$reports_cfg = config_get('reportsCfg');
$gui = new stdClass();
$tplan_mgr = new testplan($dbHandler);
$tproject_mgr = new testproject($dbHandler);
$getOpt = array('outputFormat' => 'map');
示例13: microtime
* @since 1.9.15
*/
require '../../config.inc.php';
require_once '../../third_party/codeplex/PHPExcel.php';
// Must be included BEFORE common.php
require_once 'common.php';
require_once 'displayMgr.php';
$timerOn = microtime(true);
// will be used to compute elapsed time
$templateCfg = templateConfiguration();
$smarty = new TLSmarty();
$args = init_args($db);
$metricsMgr = new tlTestPlanMetrics($db);
$tplan_mgr =& $metricsMgr;
// displayMemUsage('START' . __FILE__);
list($gui, $labels, $cfg) = initializeGui($db, $args, $smarty->getImages(), $tplan_mgr);
$args->cfg = $cfg;
$mailCfg = buildMailCfg($gui);
// We have faced a performance block due to an environment with
// 700 Builds and 1300 Test Cases on Test Plan
// This created a block on NOT RUN QUERY, but anyway will produce an enormous and
// unmanageable matrix on screen
//
// New way to process:
// ACTIVE Build Qty > 20 => Ask user to select builds he/she wants to use
// Cell Qty = (ACTIVE Build Qty x Test Cases on Test plan) > 2000 => said user I'm sorry
//
if ($gui->activeBuildsQty <= $gui->matrixCfg->buildQtyLimit || $args->do_action == 'result') {
setUpBuilds($args, $gui);
$tpl = $templateCfg->default_template;
$opt = null;
示例14: get_order_by_clause
$orderBy->dir = $args->order_by_dir;
break;
case 'order_by_role':
case 'order_by_login':
$orderBy->type = $args->operation;
$orderBy->dir = $args->order_by_dir;
$args->user_order_by = $args->operation;
$order_by_clause = get_order_by_clause($orderBy);
$the_k = $args->operation . "_dir";
$args->order_by_dir[$the_k] = $args->order_by_dir[$the_k] == 'asc' ? 'desc' : 'asc';
break;
default:
$order_by_dir['order_by_login_dir'] = 'desc';
break;
}
$gui = initializeGui($db, $args, $orderBy);
$smarty = new TLSmarty();
$smarty->assign('gui', $gui);
$smarty->assign('user_feedback', $user_feedback);
$smarty->assign('result', $sqlResult);
$smarty->assign('action', $action);
$smarty->display($templateCfg->template_dir . $templateCfg->default_template);
function toggle_order_by_dir($which_order_by, $order_by_dir_map)
{
$obm[$which_order_by] = $order_by_dir_map[$which_order_by] == 'asc' ? 'desc' : 'asc';
return $obm;
}
/*
function: get_order_by_clause()
get order by SQL clause to use to order user info
args:
示例15: templateConfiguration
require_once 'exttable.class.php';
require_once 'exec.inc.php';
// used for bug string lookup
// IMPORTANT NOTICE/WARNING about XLS generation
// Seams that \n are not liked
// http://stackoverflow.com/questions/5960242/how-to-make-new-lines-in-a-cell-using-phpexcel
//
$templateCfg = templateConfiguration();
$resultsCfg = config_get('results');
$statusCode = $resultsCfg['status_code'];
$args = init_args($db, $statusCode);
$tplan_mgr = new testplan($db);
$tproject_mgr = new testproject($db);
$tcase_mgr = new testcase($db);
$metricsMgr = new tlTestPlanMetrics($db);
$gui = initializeGui($statusCode, $args, $tplan_mgr);
$tplan_info = $tplan_mgr->get_by_id($args->tplan_id);
$tproject_info = $tproject_mgr->get_by_id($args->tproject_id);
// get issue tracker config and object to manage TestLink - BTS integration
$its = null;
$tproject_mgr = new testproject($db);
$info = $tproject_mgr->get_by_id($args->tproject_id);
$gui->bugInterfaceOn = $info['issue_tracker_enabled'];
if ($info['issue_tracker_enabled']) {
$it_mgr = new tlIssueTracker($db);
$its = $it_mgr->getInterfaceObject($args->tproject_id);
unset($it_mgr);
}
$labels = init_labels(array('deleted_user' => null, 'design' => null, 'execution' => null, 'execution_history' => null, 'nobody' => null, 'info_only_with_tester_assignment' => null, 'th_bugs_not_linked' => null, 'info_notrun_tc_report' => null));
$gui->tplan_name = $tplan_info['name'];
$gui->tproject_name = $tproject_info['name'];