blob: 956d59fd5410587d2cf98508555bf4c70b6cbfe8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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>
|