本文整理匯總了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) {
示例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';