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


PHP block::itemNavigation方法代碼示例

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


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

示例1: foreach

        if ($_SESSION['profilSession'] == "0") {
            array_push($sections_shown, 'admin');
        }
    }
}
foreach ($sections_shown as $nth_section) {
    //--- throw exception if undefined -----
    /*if(!isset($headerSections[$nth_section])) {
    			//echo("WARNING: themes/deepblue.php/header.php:  undefined section!: {$nth_section}<br>");
    			continue;
    		}*/
    //--- current section ---
    if ($nth_section == $pageSection) {
        $blockHeader->itemNavigationCurrent($headerSections[$nth_section], $strings[$nth_section]);
    } else {
        $blockHeader->itemNavigation($headerSections[$nth_section], $strings[$nth_section]);
    }
}
echo "</nobr></td>";
echo "</tr></table>";
if (isset($breadcrumbs) && count($breadcrumbs)) {
    echo "<div id=\"breadcrumbs\">";
    foreach ($breadcrumbs as $crump) {
        echo '<img src="../themes/' . THEME . '/brdcmb_carrat.gif" alt="" align="absmiddle"> ' . $crump;
    }
    echo "</div>\n\n";
}
if ($msg != '') {
    require_once '../includes/messages.php';
    $template->messagebox($msgLabel);
}
開發者ID:jgatica,項目名稱:Netoffice,代碼行數:31,代碼來源:header.php

示例2:

        if ($_SESSION['profilSession'] == "0") {
            array_push($sections_shown, 'admin');
        }
    }
}
foreach ($sections_shown as $nth_section) {
    //--- throw exception if undefined -----
    /*if(!isset($headerSections[$nth_section])) {
    			//echo("WARNING: themes/deepblue.php/header.php:  undefined section!: {$nth_section}<br>");
    			continue;
    		}*/
    //--- current section ---
    if ($nth_section == $pageSection) {
        $blockHeader->itemNavigationCurrent($headerSections[$nth_section], $strings[$nth_section]);
    } else {
        $blockHeader->itemNavigation($headerSections[$nth_section], $strings[$nth_section]);
    }
}
//--- Lien vers encodage ---
//echo $_SESSION['nameSession'];
//echo $assistant_name;
if ($_SESSION['nameSession'] == $admin_name || $_SESSION['nameSession'] == $assistant_name) {
    if ($pageSection == "encode") {
        $blockHeader->itemNavigationCurrent("/_addon/encode.php", "Encodage");
    } else {
        $blockHeader->itemNavigation("../_addon/encode.php", "Encodage");
    }
}
if ($_SESSION['nameSession'] == $admin_name) {
    if ($pageSection == "validate") {
        $blockHeader->itemNavigationCurrent("/_addon/validate.php", "Validation");
開發者ID:TICanalyste,項目名稱:netOffice--remix-,代碼行數:31,代碼來源:header.php

示例3:

if ($blank == "true") {
    $blockHeader->itemAccount("&nbsp;");
} else {
    if ($notLogged == "true") {
        $blockHeader->itemAccount("&nbsp;");
    } else {
        $blockHeader->itemAccount($strings["user"] . ":" . $nameSession);
        $blockHeader->itemAccount($blockHeader->buildLink("../general/login.php?logout=true", $strings["logout"], in));
        $blockHeader->itemAccount($blockHeader->buildLink("../preferences/updateuser.php?", $strings["preferences"], in));
        $blockHeader->itemAccount($blockHeader->buildLink("../projects_site/home.php?changeProject=true", $strings["go_projects_site"], inblank));
    }
}
$blockHeader->closeAccount();
$blockHeader->openNavigation();
if ($blank == "true") {
    $blockHeader->itemNavigation("&nbsp;");
} else {
    if ($notLogged == "true") {
        $blockHeader->itemNavigation($blockHeader->buildLink("../general/login.php?", $strings["login"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../general/systemrequirements.php?", $strings["requirements"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../general/license.php?", $strings["license"], in));
    } else {
        $blockHeader->itemNavigation($blockHeader->buildLink("../general/home.php?", $strings["home"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../projects/listprojects.php?", $strings["projects"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../clients/listclients.php?", $strings["clients"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../reports/createreport.php?", $strings["reports"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../search/createsearch.php?", $strings["search"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../calendar/viewcalendar.php?", $strings["calendar"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../newsdesk/listnews.php?", $strings["newsdesk"], in));
        $blockHeader->itemNavigation($blockHeader->buildLink("../bookmarks/listbookmarks.php?view=all", $strings["bookmarks"], in));
        if ($profilSession == "0") {
開發者ID:ColBT,項目名稱:php_tut,代碼行數:31,代碼來源:header.php


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