- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
<?php
function getRusMonth($month)
{
if($month > 12 || $month < 1) return FALSE;
$aMonth = array('январь',
'февраль',
'март',
'апрель',
'май',
'июнь',
'июль',
'август',
'сентябрь',
'октябрь',
'ноябрь',
'декабрь');
return $aMonth[$month - 1];
}
function gen_months_list()
{
global $monthnum;
$year = date("Y");
for($month = 1; $month <= 12; $month++)
{
if($month <= 9)
{
if("0".$month == $monthnum) $mn_active = " class=\"active\"";
$month_list .= "<li><a href=\"/".$year."/0".$month."/\"".$mn_active.">".getRusMonth($month)."</a></li>\n";
}
else
{
if($month == $monthnum) $mn_active = " class=\"active\"";
$month_list .= "<li><a href=\"/".$year."/".$month."/\"".$mn_active.">".getRusMonth($month)."</a></li>\n";
}
$mn_active = "";
}
return $month_list;
}
?>
movaxbx 25.02.2012 18:27 # +3
Lowezar 26.02.2012 11:10 # +2
Vasiliy 26.02.2012 13:03 # 0
eth0 26.02.2012 18:35 # 0