當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WT_DB::getQueryLog方法代碼示例

本文整理匯總了PHP中WT_DB::getQueryLog方法的典型用法代碼示例。如果您正苦於以下問題:PHP WT_DB::getQueryLog方法的具體用法?PHP WT_DB::getQueryLog怎麽用?PHP WT_DB::getQueryLog使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在WT_DB的用法示例。


在下文中一共展示了WT_DB::getQueryLog方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: ajaxRequest

 public function ajaxRequest()
 {
     global $SEARCH_SPIDER;
     // Search engines should not make AJAX requests
     if ($SEARCH_SPIDER) {
         header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden');
         exit;
     }
     // Initialise tabs
     $tab = WT_Filter::get('module');
     // A request for a non-existant tab?
     if (array_key_exists($tab, $this->tabs)) {
         $mod = $this->tabs[$tab];
     } else {
         header($_SERVER['SERVER_PROTOCOL'] . ' 404 Not Found');
         exit;
     }
     header("Content-Type: text/html; charset=UTF-8");
     // AJAX calls do not have the meta tag headers and need this set
     header("X-Robots-Tag: noindex,follow");
     // AJAX pages should not show up in search results, any links can be followed though
     Zend_Session::writeClose();
     echo $mod->getTabContent();
     if (WT_DEBUG_SQL) {
         echo WT_DB::getQueryLog();
     }
 }
開發者ID:jacoline,項目名稱:webtrees,代碼行數:27,代碼來源:Individual.php

示例2: elseif

        $module_name = $blocks['main'][$block_id];
    } elseif (array_key_exists($block_id, $blocks['side'])) {
        $module_name = $blocks['side'][$block_id];
    } else {
        exit;
    }
    if (array_key_exists($module_name, $all_blocks)) {
        $class_name = $module_name . '_WT_Module';
        $module = new $class_name();
        $module->getBlock($block_id);
    }
    if (WT_DEBUG) {
        echo execution_stats();
    }
    if (WT_DEBUG_SQL) {
        echo WT_DB::getQueryLog();
    }
    exit;
}
$controller = new WT_Controller_Page();
if ($ctype == 'user') {
    $controller->restrictAccess(Auth::isMember());
}
$controller->setPageTitle($ctype == 'user' ? WT_I18N::translate('My page') : WT_TREE_TITLE)->setMetaRobots('index,follow')->setCanonicalUrl(WT_SCRIPT_NAME . '?ctype=' . $ctype . '&ged=' . WT_GEDCOM)->pageHeader()->addInlineJavascript('jQuery.ajaxSetup({cache:true});');
if ($ctype == 'user') {
    echo '<div id="my-page">';
    echo '<h1 class="center">', WT_I18N::translate('My page'), '</h1>';
} else {
    echo '<div id="home-page">';
}
if ($blocks['main']) {
開發者ID:brambravo,項目名稱:webtrees,代碼行數:31,代碼來源:index.php

示例3: pageFooter

 protected function pageFooter()
 {
     global $footerfile, $TEXT_DIRECTION, $view;
     if (WT_GED_ID) {
         require WT_ROOT . $footerfile;
     }
     if (WT_DEBUG_SQL) {
         echo WT_DB::getQueryLog();
     }
     echo $this->getJavascript();
     echo '</body></html>';
     return $this;
 }
開發者ID:brambravo,項目名稱:webtrees,代碼行數:13,代碼來源:Page.php

示例4: pageFooter

 protected function pageFooter()
 {
     if (WT_DEBUG_SQL) {
         echo WT_DB::getQueryLog();
     }
     echo $this->getJavascript();
 }
開發者ID:brambravo,項目名稱:webtrees,代碼行數:7,代碼來源:Base.php


注:本文中的WT_DB::getQueryLog方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。