Add initial between point adding prototype
[bus.git] / busui / common.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
date_default_timezone_set('Australia/ACT');
 
function service_period()
{
switch (date('w')){
 
case 0:
        return 'sunday';
case 6:
        return 'saturday';
default:
        return 'weekday';
}       
}
?>