Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / production / example_apps / shared_calendar / src / Template / Users / show_calendar.ctp
1 <?php
2 /**
3   * @var \App\View\AppView $this
4   * @var \App\Model\Entity\User $user
5   */
6 ?>
7 <nav class="large-3 medium-4 columns" id="actions-sidebar">
8     <ul class="side-nav">
9         <li class="heading"><?= __('Actions') ?></li>
10         <li><?= $this->Html->link(__('List Users'), ['action' => 'index']) ?> </li>
11     </ul>
12 </nav>
13 <div class="users view large-9 medium-8 columns content">
14     <h3>upcoming appointments</h3>
15
16         <?php
17                 $cell = $this->cell('GoogleCalendar', [$calEvents]);
18         ?>
19         <?= $cell ?>
20     
21 </div>