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


PHP Planning::showSelectionForm方法代碼示例

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


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

示例1: displayTabContentForItem

 static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0)
 {
     if ($item->getType() == __CLASS__) {
         switch ($tabnum) {
             case 1:
                 // all
                 Planning::showSelectionForm($_POST['type'], $_POST['date'], 'my', 0, $_POST["limititemtype"]);
                 Planning::showPlanning($_SESSION['glpiID'], $_POST["gID"], $_POST["date"], $_POST["type"], $_POST["limititemtype"]);
                 break;
             case 2:
                 Planning::showSelectionForm($_POST['type'], $_POST['date'], 'mygroups', 0, $_POST["limititemtype"]);
                 Planning::showPlanning($_SESSION['glpiID'], 'mine', $_POST["date"], $_POST["type"], $_POST["limititemtype"]);
                 break;
             case 3:
                 Planning::showSelectionForm($_POST['type'], $_POST['date'], 'users', $_POST["uID"], $_POST["limititemtype"]);
                 Planning::showPlanning($_POST['uID'], 0, $_POST["date"], $_POST["type"], $_POST["limititemtype"]);
                 break;
             case 4:
                 Planning::showSelectionForm($_POST['type'], $_POST['date'], 'groups', $_POST["gID"], $_POST["limititemtype"]);
                 Planning::showPlanning(0, $_POST['gID'], $_POST["date"], $_POST["type"], $_POST["limititemtype"]);
                 break;
         }
     }
     return true;
 }
開發者ID:geldarr,項目名稱:hack-space,代碼行數:25,代碼來源:planning.class.php

示例2: switch

    $_GET["gID"] = 0;
}
if (!isset($_GET["usertype"])) {
    $_GET["usertype"] = "user";
}
switch ($_GET["usertype"]) {
    case "user":
        $_GET['gID'] = 0;
        break;
    case "group":
        $_GET['uID'] = 0;
        break;
    case "user_group":
        $_GET['gID'] = "mine";
        break;
}
if (isset($_GET['genical'])) {
    Planning::generateIcal($_GET["uID"], $_GET["gID"]);
} else {
    commonHeader($LANG['Menu'][29], $_SERVER['PHP_SELF'], "maintain", "planning");
    checkSeveralRightsOr(array('show_all_planning' => '1', 'show_planning' => '1'));
    if (!isset($_GET["date"]) || empty($_GET["date"])) {
        $_GET["date"] = strftime("%Y-%m-%d");
    }
    if (!isset($_GET["type"])) {
        $_GET["type"] = "week";
    }
    Planning::showSelectionForm($_GET['type'], $_GET['date'], $_GET["usertype"], $_GET["uID"], $_GET["gID"]);
    Planning::show($_GET['uID'], $_GET['gID'], $_GET["date"], $_GET["type"]);
    commonFooter();
}
開發者ID:ryukansent,項目名稱:Thesis-SideB,代碼行數:31,代碼來源:planning.php


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