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


PHP Bootstrap::list_group方法代碼示例

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


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

示例1: menu

function menu()
{
    $site_path_array = explode("/", LINK_FILE);
    $menu = array(array("url" => LINK_ABS . $site_path_array[0] . "/index.php", "text" => "Sustainer Control Centre", "icon" => "home"), array("url" => LINK_ABS . $site_path_array[0] . "/schedule.php", "text" => "Sustainer Schedule", "icon" => "music"), array("url" => LINK_ABS . $site_path_array[0] . "/adverts.php", "text" => "Advert Manager", "icon" => "gbp"));
    foreach ($menu as &$item) {
        if ($site_path_array[1] == array_pop(explode("/", $item["url"]))) {
            $item["active"] = true;
        }
    }
    return Bootstrap::list_group($menu);
}
開發者ID:radiowarwick,項目名稱:digiplay,代碼行數:11,代碼來源:sidebar.php

示例2: menu

function menu()
{
    $site_path_array = explode("/", LINK_FILE);
    $menu = array(array("url" => LINK_ABS . $site_path_array[0] . "/users/users-viewers.php?setid=" . $_REQUEST['setid'], "text" => "Viewers", "icon" => "eye-open"), array("url" => LINK_ABS . $site_path_array[0] . "/users/users-editors.php?setid=" . $_REQUEST['setid'], "text" => "Editors", "icon" => "edit"), array("url" => LINK_ABS . $site_path_array[0] . "/users/users-admins.php?setid=" . $_REQUEST['setid'], "text" => "Admins", "icon" => "cog"));
    foreach ($menu as &$item) {
        if ($site_path_array[2] == str_replace("?setid=" . $_REQUEST['setid'], "", array_pop(explode("/", $item["url"])))) {
            $item["active"] = true;
        }
    }
    return Bootstrap::list_group($menu);
}
開發者ID:radiowarwick,項目名稱:digiplay,代碼行數:11,代碼來源:sidebar.php


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