background: #2e5a89; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #2e5a89 0%, #16283e 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#2e5a89), color-stop(100%,#16283e)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #2e5a89 0%,#16283e 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #2e5a89 0%,#16283e 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #2e5a89 0%,#16283e 100%); /* IE10+ */
background: radial-gradient(ellipse at center, #2e5a89 0%,#16283e 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e5a89', endColorstr='#16283e',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.selectable {
-webkit-touch-callout: all;
-webkit-user-select: all;
-khtml-user-select: all;
-moz-user-select: all;
-ms-user-select: all;
user-select: all;
}
$url = 'http://egamingbets.com/ajax.php?key=modules_tables_update_UpdateTableBets&act=UpdateTableBets&ajax=update&fg=1&ind=tables&st=0&type=modules&ut=0';
$data = json_decode(file_get_contents($url));
date_default_timezone_set('CET');
echo '<table>';
echo '<tr><th>Дата (CET)</th><th>Игра</th><th>Игрок 1</th><th>Коэфф</th><th>Игрок 2</th><th>Коэфф</th><th>Ничья</th><th>Событие</th></tr>';
foreach ($data->bets as $bet) {
echo '<tr>';
// Дата и время
echo '<td>' . date('d.m G:i', $bet->date) . '</td>';
// Иконка игры
echo '<td><img src="https://images.egamingbets.com/league/' . $bet->game . '.gif"></td>';
// Флаг страны и ник игрока 1
echo '<td><img src="https://images.egamingbets.com/flags/' . $bet->gamer_1->flag . '.png">' . $bet->gamer_1->nick . '</td>';
// Коэффициент игрока 1
echo '<td>' . $bet->coef_1 . '</td>';
// Флаг страны и ник игрока 2
echo '<td><img src="https://images.egamingbets.com/flags/' . $bet->gamer_2->flag . '.png">' . $bet->gamer_2->nick . '</td>';
// Коэффициент игрока 2
echo '<td>' . $bet->coef_2 . '</td>';
// Ничья
echo '<td>' . (is_null($bet->coef_draw) ? 'none' : $bet->coef_draw) . '</td>';
// Событие
echo '<td>' . $bet->tourn . '</td>';
echo '</tr>';
}
echo '</table>';
Element.prototype.myPlugin = function (params) {
console.log(params.option);
};
document.querySelector('body').myPlugin({ option: true });