Changeset 1610 for trunk/system/views

Show
Ignore:
Timestamp:
12/24/2007 12:50:07 AM (11 months ago)
Author:
Shadowhand
Message:

Added comments to the new Calendar and /examples/calendar

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/views/kohana_calendar.php

    r1609 r1610  
    2626<tr> 
    2727<?php foreach ($week as $day): ?> 
    28 <td<?php if ($day[1] == FALSE): ?> class="prev-next"<?php endif ?>><?php echo $day[0] ?></td> 
     28<?php if ($day[1] === FALSE): ?> 
     29<td class="prev-next"><?php echo $day[0] ?></td> 
     30<?php else: ?> 
     31<?php 
     32/** 
     33 * @todo Need to add assignable stuff to this. For example, making certain dates into links. 
     34 */ 
     35?> 
     36<td><?php echo $day[0] ?></td> 
     37<?php endif; ?> 
    2938<?php endforeach ?> 
    3039</tr>