diff options
author | raylu <raylu@mixpanel.com> | 2011-07-16 22:07:00 -0700 |
---|---|---|
committer | raylu <raylu@mixpanel.com> | 2011-07-16 22:07:00 -0700 |
commit | 5cc64bc633e8ff287cf7bb16ab1a8b8d2afb29b3 (patch) | |
tree | 77cfb712e6bc2b469702101d031791e16f2a022e /views/elements | |
parent | 3404aebda95c78a98e477c120354f20891f55c7b (diff) | |
download | otakuhub-5cc64bc633e8ff287cf7bb16ab1a8b8d2afb29b3.tar.xz |
kdrama search results on search/index
Diffstat (limited to 'views/elements')
-rw-r--r-- | views/elements/animesearch.html.php | 4 | ||||
-rw-r--r-- | views/elements/kdramatable.html.php | 28 |
2 files changed, 28 insertions, 4 deletions
diff --git a/views/elements/animesearch.html.php b/views/elements/animesearch.html.php deleted file mode 100644 index 370ff1a..0000000 --- a/views/elements/animesearch.html.php +++ /dev/null @@ -1,4 +0,0 @@ -<tr><th>img</th><th>Name</th><th>Episodes</th><th>Type</th><th>Score</th></tr> - <?php foreach($content as $item): ?> - <tr><td>"image"</td><td><a href="/anime/view/<?= $item->special_id ?>"><?= $item->title ?></a></td> <td><?= $item->episode_count ?></td><td><?= $item->view_type ?></td><td><?= $item->mal_score ?></td></tr> -<?php endforeach; ?>
\ No newline at end of file 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> |