diff options
Diffstat (limited to 'views/elements/kdramatable.html.php')
-rw-r--r-- | views/elements/kdramatable.html.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/views/elements/kdramatable.html.php b/views/elements/kdramatable.html.php new file mode 100644 index 0000000..956d59f --- /dev/null +++ b/views/elements/kdramatable.html.php @@ -0,0 +1,28 @@ +<table> +<th>Title</th> +<th>Date</th> +<?php foreach ($kdrama as $k): ?> + <tr> + <td> + <a href="/kdrama/view/<?= $k->special_id ?>"><?= $k->title ?></a> + <?php if (isset($k->foreign_titles) || isset($k->alternative_titles)): ?> + <span class="alt_titles"> + <?php if (isset($k->foreign_titles)): ?> + <?= $k->foreign_titles[0] ?> + <?php endif ?> + <?php if (isset($k->alternative_titles)): ?> + + <?= $k->alternative_titles[0] ?> + <?php endif ?> + </span> + <?php endif ?> + </td> + <td> + <?php + $network = array_values($k->networks->data()); + ?> + <?= $network[0]['broadcast_period'] ?> + </td> + </tr> +<?php endforeach ?> +</table> |