adding example apps, fixing powerup issues
[feisty_meow.git] / production / example_apps / shared_calendar / src / Template / Cell / GoogleCalendar / display.ctp
1 <?php
2 /**
3  * @var \App\View\AppView $this
4  * @var \App\Model\Entity\User $user
5  */
6 use Cake\Log\Log;
7 ?>
8 <div class="users view large-9 medium-8 columns content">
9         <table class="vertical-table">
10     
11     <?php foreach ($calEvents as $day => $events): ?>
12     <tr>
13                 <th scope="row"><?= __(h($day)) ?></th>
14                 <td>
15                         <table>
16                         <?php foreach ( $events as $appt ) : ?>
17                            <tr>
18                                         <td><?= h($appt['info'] . ' at ' . $appt['start']); ?></td>
19                                         <!--  <td><?= h('full dump: ' . var_export($appt['event'], true)); ?> -->
20                                 </tr>
21                             <?php endforeach; ?>
22                         </table>
23                 </td>
24         </tr>
25     <?php endforeach; ?>
26         </table>
27 </div>