当前位置: 首页>>代码示例>>PHP>>正文


PHP Toolbox::setDebugMode方法代码示例

本文整理汇总了PHP中Toolbox::setDebugMode方法的典型用法代码示例。如果您正苦于以下问题:PHP Toolbox::setDebugMode方法的具体用法?PHP Toolbox::setDebugMode怎么用?PHP Toolbox::setDebugMode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Toolbox的用法示例。


在下文中一共展示了Toolbox::setDebugMode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: header_html

     header_html(__('Beginning of the installation'));
     step0();
     break;
 case "Etape_0":
     // choice ok , go check system
     checkConfigFile();
     //TRANS %s is step number
     header_html(sprintf(__('Step %d'), 0));
     $_SESSION["Test_session_GLPI"] = 1;
     step1($_POST["update"]);
     break;
 case "Etape_1":
     // check ok, go import mysql settings.
     checkConfigFile();
     // check system ok, we can use specific parameters for debug
     Toolbox::setDebugMode(Session::DEBUG_MODE, 0, 0, 1);
     header_html(sprintf(__('Step %d'), 1));
     step2($_POST["update"]);
     break;
 case "Etape_2":
     // mysql settings ok, go test mysql settings and select database.
     checkConfigFile();
     header_html(sprintf(__('Step %d'), 2));
     step3($_POST["db_host"], $_POST["db_user"], $_POST["db_pass"], $_POST["update"]);
     break;
 case "Etape_3":
     // Create and fill database
     checkConfigFile();
     header_html(sprintf(__('Step %d'), 3));
     if (empty($_POST["databasename"])) {
         $_POST["databasename"] = "";
开发者ID:paisdelconocimiento,项目名称:glpi-smartcities,代码行数:31,代码来源:install.php

示例2: array_search

         $CFG_GLPI["typedoc_icon_dir"] = $CFG_GLPI["root_doc"] . "/pics/icones";
     }
 } else {
     echo "Error accessing config table";
     exit;
 }
 if (isCommandLine() && isset($_SERVER['argv'])) {
     $key = array_search('--debug', $_SERVER['argv']);
     if ($key) {
         $_SESSION['glpi_use_mode'] = Session::DEBUG_MODE;
         unset($_SERVER['argv'][$key]);
         $_SERVER['argv'] = array_values($_SERVER['argv']);
         $_SERVER['argc']--;
     }
 }
 Toolbox::setDebugMode();
 if (isset($_SESSION["glpiroot"]) && $CFG_GLPI["root_doc"] != $_SESSION["glpiroot"]) {
     Html::redirect($_SESSION["glpiroot"]);
 }
 // Override cfg_features by session value
 foreach ($CFG_GLPI['user_pref_field'] as $field) {
     if (!isset($_SESSION["glpi{$field}"]) && isset($CFG_GLPI[$field])) {
         $_SESSION["glpi{$field}"] = $CFG_GLPI[$field];
     }
 }
 // Check maintenance mode
 if (isset($CFG_GLPI["maintenance_mode"]) && $CFG_GLPI["maintenance_mode"]) {
     if (isset($_GET['skipMaintenance']) && $_GET['skipMaintenance']) {
         $_SESSION["glpiskipMaintenance"] = 1;
     }
     if (!isset($_SESSION["glpiskipMaintenance"]) || !$_SESSION["glpiskipMaintenance"]) {
开发者ID:jose-martins,项目名称:glpi,代码行数:31,代码来源:config.php


注:本文中的Toolbox::setDebugMode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。