38 lines
946 B
PHP
38 lines
946 B
PHP
<?php
|
||
|
||
use Insallah\Db;
|
||
|
||
if (!defined('GAME')) {
|
||
die();
|
||
}
|
||
|
||
class season
|
||
{
|
||
|
||
public static $yy = [
|
||
1 => [1, '01', 'ίνβΰπό', 'ίνβΰπόρκθι'],
|
||
2 => [2, '02', 'Τεβπΰλό', 'Τεβπΰλόρκθι'],
|
||
3 => [3, '03', 'Μΰπς', 'Μΰπςξβρκθι'],
|
||
4 => [4, '04', 'ΐοπελό', 'ΐοπελόρκθι'],
|
||
5 => [5, '05', 'Μΰι', 'Μΰιρκθι'],
|
||
6 => [6, '06', 'Θώνό', 'Θώνόρκθι'],
|
||
7 => [7, '07', 'Θώλό', 'Θώλόρκθι'],
|
||
8 => [8, '08', 'ΐβγσρς', 'ΐβγσρςξβρκθι'],
|
||
9 => [9, '09', 'Ρενς<CEBD>από', 'Ρενς<CEBD>απόρκθι'],
|
||
10 => [10, '10', 'Ξκς<CEBA>από', 'Ξκς<CEBA>απόρκθι'],
|
||
11 => [11, '11', 'Νξ<CE9D>από', 'Νξ<CE9D>απόρκθι'],
|
||
12 => [12, '12', 'Δεκΰαπό', 'Δεκΰαπόρκθι'],
|
||
];
|
||
|
||
public static $date = [], $m = [];
|
||
|
||
public static function data($val)
|
||
{
|
||
self::$m = Db::getRow('select * from sss_m where id = ?', [$val]);
|
||
if (self::$m['s'] != self::$date['m']) {
|
||
self::$m = [];
|
||
}
|
||
}
|
||
|
||
}
|