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


PHP interPool::writeBallotageReponse方法代碼示例

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


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

示例1:

$nhl_team_as_gerant_name = $data["nhl_team_as_gerant_name"];
$nbre_periodes = $data[nbre_periodes];
$joueur_blesse_ballotage = $data["joueur_blesse_ballotage"];
$ballotage_hour_first_day = $pool->today . " " . $data["ballotage_hour_first_day"];
$salary_cap_enabled = $data["enable_salary_cap"];
$salary_cap = $data["salary_cap"];
$salary_floor = $data["salary_floor"];
$hour_max_last_day = $pool->today . " " . $data["ballotage_hour_last_day"];
$str = "";
// Traitement du formulaire
if (isset($_REQUEST["submit"])) {
    $ballotage_id = $_REQUEST["ballotage_id"];
    $reponseGerant = $_REQUEST["choixBallotage{$ballotage_id}"];
    if ($reponseGerant != "") {
        if ($reponseGerant == 2) {
            $pool->writeBallotageReponse($id_pool, $ballotage_id, "N", $gerant, $id_saison, $periode, -1, $salary_cap_enabled, $salary_cap, $salary_floor);
        } else {
            $id_player_retour = $_REQUEST["cb_ballotage{$ballotage_id}"];
            if ($id_player_retour != "") {
                $rtn = $pool->writeBallotageReponse($id_pool, $ballotage_id, "Y", $gerant, $id_saison, $periode, $id_player_retour, $salary_cap_enabled, $salary_cap, $salary_floor);
                if ($rtn == "non") {
                    $message = "La récupération d'un joueur au ballotage a été refusé, car le plafond ou le plancher salarial n'était pas respecté.";
                }
            }
        }
    }
}
if ($pool->isLastDayOfPeriod($id_pool, $periode, $id_saison) && $pool->todayDate->format('Y-m-d H:i:s') > $hour_max_last_day) {
    $disabled = "disabled";
}
// update du champ ballotage_vu de la table accounts_detail
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:ballotage.php

示例2: explode

if ($gerant_sel != $gerant) {
    $disabled = "disabled";
}
if ($periode_sel < $periode) {
    $disabled = "disabled";
}
if ($disabled == "disabled") {
    $cb_disable = "disabled";
}
// Traitement du formulaire
if (isset($_REQUEST["submit"])) {
    $ballotage_id = $_REQUEST["ballotage_id"];
    $reponseGerant = $_REQUEST["choixBallotage{$ballotage_id}"];
    if ($reponseGerant != "") {
        if ($reponseGerant == 2) {
            $pool->writeBallotageReponse($id_pool, $ballotage_id, "N", $gerant, $id_saison, $periode);
        } else {
            $id_player_retour = $_REQUEST["cb_ballotage{$ballotage_id}"];
            if ($id_player_retour != "") {
                $pool->writeBallotageReponse($id_pool, $ballotage_id, "Y", $gerant, $id_saison, $periode, $id_player_retour);
            }
        }
    }
}
// rיcupיrer certaines informations du pool
$data = $pool->getConfigPool($id_pool, $id_saison);
$nhl_team_as_gerant_name = $data["nhl_team_as_gerant_name"];
$nbre_periodes = $data[nbre_periodes];
$joueur_blesse_ballotage = $data["joueur_blesse_ballotage"];
$ballotage_hour_first_day = $data["ballotage_hour_first_day"];
$hourA = explode(":", $ballotage_hour_first_day);
開發者ID:jfanctil,項目名稱:lamoria,代碼行數:31,代碼來源:ballotage.php


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