示例#1
0
<link href="<?php 
echo $this->getBaseUrl('application/modules/war/static/css/style.css');
?>
" rel="stylesheet">
<?php 
if ($this->get('war') != '') {
    foreach ($this->get('war') as $war) {
        $gameMapper = new \Modules\War\Mappers\Games();
        $warMapper = new \Modules\War\Mappers\War();
        $games = $gameMapper->getGamesByWarId($war->getId());
        if ($games != '') {
            $enemyPoints = '';
            $groupPoints = 0;
            $class = '';
            foreach ($games as $game) {
                $groupPoints += $game->getGroupPoints();
                $enemyPoints += $game->getEnemyPoints();
            }
            if ($groupPoints > $enemyPoints) {
                $class = 'class="war_win small"';
            }
            if ($groupPoints < $enemyPoints) {
                $class = 'class="war_lost small"';
            }
            if ($groupPoints == $enemyPoints) {
                $class = 'class="war_drawn small"';
            }
        }
        $gameImg = $this->getBaseUrl('application/modules/war/static/img/' . $war->getWarGame() . '.png');
        if ($warMapper->url_check($gameImg)) {
            $gameImg = '<img src="' . $this->getBaseUrl('application/modules/war/static/img/' . $war->getWarGame() . '.png') . '" title="' . $this->escape($war->getWarGame()) . '" width="16" height="16">';
示例#2
0
<?php

if ($this->get('war') != '') {
    foreach ($this->get('war') as $war) {
        $warMapper = new \Modules\War\Mappers\War();
        $warTime = $war->getWarTime();
        $gameImg = $this->getBaseUrl('application/modules/war/static/img/' . $war->getWarGame() . '.png');
        if ($warMapper->url_check($gameImg)) {
            $gameImg = '<img src="' . $this->getBaseUrl('application/modules/war/static/img/' . $war->getWarGame() . '.png') . '" title="' . $this->escape($war->getWarGame()) . '" width="16" height="16">';
        } else {
            $gameImg = '<i class="fa fa-question-circle text-muted"></i>';
        }
        ?>
        <div class="games-schedule-items">
            <div class="row games-team">
                <a href="<?php 
        echo $this->getUrl('war/index/show/id/' . $war->getId());
        ?>
">                
                    <div class="col-md-5">
                        <div style="width: 20px; float: left;"><?php 
        echo $gameImg;
        ?>
</div>
                        <div><?php 
        echo $this->escape($war->getWarEnemyTag());
        ?>
</div>
                    </div>
                    <div class="small" style="margin-top: 3px; float: left;">vs.</div>
                    <div class="col-md-3" style="padding-left: 5px;">