コード例 #1
0
ファイル: cal_day.php プロジェクト: nanoprime/sureinvoice
$activities = $ta->getCalendarActivities($user_id, $day->getTimestamp(), $day->getTimestamp() + 24 * 60 * 60, 'hour');
if ($activities === FALSE) {
    $error_msg .= "Could not retrieve activities!\n";
    debug_message($ta->getLastError());
}
// Make sure the current date is selected
$sHours = array(new Hour(date('Y'), date('m'), date('d'), date('H')));
// Build the hour list for that day
$day->build($sHours);
$title = "Calendar - Month View";
require 'header.php';
?>
<table class="dg_table" width="450">
	<TR>
		<TD COLSPAN="2" CLASS="dg_header_cell"><?php 
echo date('l F jS', $day->thisDay(true));
?>
</TD>
	</TR>
<?
$alt='';

// Loop through the hours
while ( ($hour = $day->fetch()) != false ) {
    // Set a range for the hours; only between 8am and 6pm
    //if ( $hour->thisHour() < 6 || $hour->thisHour() > 20 )
    //    continue;

    // For alternating row colors
    $alt= $alt=="dg_data_cell_1" ? "dg_data_cell_2" : "dg_data_cell_1";