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


PHP block::itemNavigationCurrent方法代码示例

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


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

示例1:

        array_push($sections_shown, 'home', 'projects', 'clients', 'reports', 'search', 'calendar', 'bookmarks', 'preferences');
        //--- admin? ---
        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) {
开发者ID:TICanalyste,项目名称:netOffice--remix-,代码行数:31,代码来源:header.php

示例2: foreach

        array_push($sections_shown, 'home', 'projects', 'clients', 'reports', 'search', 'calendar', 'bookmarks', 'preferences');
        //--- admin? ---
        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';
开发者ID:jgatica,项目名称:Netoffice,代码行数:31,代码来源:header.php


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