Removed obsolete $ in source files
This commit is contained in:
parent
a39c010e06
commit
e5f2b64d98
146 changed files with 836 additions and 1081 deletions
|
@ -1,14 +1,13 @@
|
|||
<?php
|
||||
// $Id: calendar-week-overlap.tpl.php,v 1.1.2.1 2010/11/28 23:31:28 karens Exp $
|
||||
/**
|
||||
* @file
|
||||
* Template to display a view as a calendar week with overlapping items
|
||||
*
|
||||
*
|
||||
* @see template_preprocess_calendar_week.
|
||||
*
|
||||
* $day_names: An array of the day of week names for the table header.
|
||||
* $rows: The rendered data for this week.
|
||||
*
|
||||
*
|
||||
* For each day of the week, you have:
|
||||
* $rows['date'] - the date for this day, formatted as YYYY-MM-DD.
|
||||
* $rows['datebox'] - the formatted datebox for this day.
|
||||
|
@ -18,11 +17,11 @@
|
|||
* $rows['items'][$time_period]['hour'] - the formatted hour for a time period.
|
||||
* $rows['items'][$time_period]['ampm'] - the formatted ampm value, if any for a time period.
|
||||
* $rows['items'][$time_period]['values'] - An array of formatted items for a time period.
|
||||
*
|
||||
*
|
||||
* $view: The view.
|
||||
* $min_date_formatted: The minimum date for this calendar in the format YYYY-MM-DD HH:MM:SS.
|
||||
* $max_date_formatted: The maximum date for this calendar in the format YYYY-MM-DD HH:MM:SS.
|
||||
*
|
||||
*
|
||||
*/
|
||||
//dsm('Display: '. $display_type .': '. $min_date_formatted .' to '. $max_date_formatted);
|
||||
//dsm($rows);
|
||||
|
@ -50,8 +49,8 @@
|
|||
<tbody>
|
||||
<tr class="holder"><td class="calendar-time-holder"></td><td class="calendar-day-holder"></td><td class="calendar-day-holder"></td><td class="calendar-day-holder"></td><td class="calendar-day-holder"></td><td class="calendar-day-holder"></td><td class="calendar-day-holder"></td><td class="calendar-day-holder"></td></tr>
|
||||
<?php for ($i = 0; $i < $multiday_rows; $i++): ?>
|
||||
<?php
|
||||
$colpos = 0;
|
||||
<?php
|
||||
$colpos = 0;
|
||||
$rowclass = "all-day";
|
||||
if( $i == 0) {
|
||||
$rowclass .= " first";
|
||||
|
@ -79,7 +78,7 @@
|
|||
</td>
|
||||
<?php $colpos = $cell['wday'] + $cell['colspan']; ?>
|
||||
<?php endif; ?>
|
||||
<?php endfor; ?>
|
||||
<?php endfor; ?>
|
||||
<?php for($j = $colpos; $j < 7; $j++) : ?>
|
||||
<td class="calendar-agenda-items multi-day no-entry"><div class="inner"> </div></td>
|
||||
<?php endfor;?>
|
||||
|
@ -103,7 +102,7 @@
|
|||
<td class="calendar-agenda-items multi-day no-entry"><div class="inner"> </div></td>
|
||||
<?php endfor; ?>
|
||||
</tr>
|
||||
</thead>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
<div class="header-body-divider"> </div>
|
||||
|
@ -112,8 +111,8 @@
|
|||
try {
|
||||
// Hide container while it renders... Degrade w/o javascript support
|
||||
$('#single-day-container').css('visibility','hidden');
|
||||
}catch(e){
|
||||
// swallow
|
||||
}catch(e){
|
||||
// swallow
|
||||
}
|
||||
</script>
|
||||
<table class="full">
|
||||
|
@ -129,7 +128,7 @@
|
|||
<td>
|
||||
<?php endif; ?>
|
||||
<?php foreach ($start_times as $time_cnt => $start_time): ?>
|
||||
<?php
|
||||
<?php
|
||||
if ($time_cnt == 0) {
|
||||
$class = 'first ';
|
||||
}
|
||||
|
@ -182,7 +181,7 @@ try {
|
|||
|
||||
// Show it now that it is complete and positioned
|
||||
$('#single-day-container').css('visibility','visible');
|
||||
}catch(e){
|
||||
// swallow
|
||||
}catch(e){
|
||||
// swallow
|
||||
}
|
||||
</script>
|
||||
</script>
|
||||
|
|
Reference in a new issue