コード例 #1
0
 $type = $row['type'];
 $winner_faction = $row['winner_faction'];
 $bracket_id = $row['bracket_id'];
 $datetime = new DateTime($row['date']);
 $bracket_level_range = getLevelRangeByBracketId($bracket_id);
 $type_name = getBattleGroundTypeName($type);
 $date = $datetime->format($date_format);
 $time = $datetime->format($time_format);
 $month = $datetime->format('M');
 $year = $datetime->format('Y');
 $month_and_year = $month . " " . $year;
 $this_day_condition = "DATE(date) = DATE('" . $row['date'] . "')";
 $this_month_condition = "MONTH(date) = MONTH('" . $row['date'] . "') AND YEAR(date) = YEAR('" . $row['date'] . "')";
 $this_level_condition = "bracket_id = " . $bracket_id;
 $score_this_day = getFactionScores($this_day_condition, $this_level_condition, "");
 $score_this_month = getFactionScores($this_month_condition, $this_level_condition, "");
 $alliance_today = $score_today[0];
 $horde_today = $score_today[1];
 $alliance_this_day = $score_this_day[0];
 $horde_this_day = $score_this_day[1];
 $alliance_this_month = $score_this_month[0];
 $horde_this_month = $score_this_month[1];
 switch ($winner_faction) {
     case $ALLIANCE:
         $winner_text = "<span style=\"color: " . $alliance_color . "\">Alliance Wins</span>";
         break;
     case $HORDE:
         $winner_text = "<span style=\"color: " . $horde_color . "\">Horde Wins</span>";
         break;
     case $NONE:
         $winner_text = "Draw";
コード例 #2
0
<?php

$score_today = getFactionScores($today_condition, $level_condition, $type_condition);
$alliance_today = $score_today[0];
$horde_today = $score_today[1];
$score_last7 = getFactionScores($last7_condition, $level_condition, $type_condition);
$alliance_last7 = $score_last7[0];
$horde_last7 = $score_last7[1];
$score_month = getFactionScores($month_condition, $level_condition, $type_condition);
$alliance_month = $score_month[0];
$horde_month = $score_month[1];
$score_overall = getFactionScores("", $level_condition, $type_condition);
$alliance_overall = $score_overall[0];
$horde_overall = $score_overall[1];