aboutsummaryrefslogtreecommitdiff
path: root/views/list
diff options
context:
space:
mode:
authorSyndamia <kamen@syndamia.com>2025-01-26 19:01:17 +0200
committerSyndamia <kamen@syndamia.com>2025-01-26 22:21:31 +0200
commit73ad3e330be1a6849269fec5d4b7b42b0330cede (patch)
tree6806ec41af41fd23f3a8cacdbc235c828c494d85 /views/list
parent77708ef5b9559e6598f5acf7d2b30dbdbd037d81 (diff)
downloadnowayforward_human-73ad3e330be1a6849269fec5d4b7b42b0330cede.tar
nowayforward_human-73ad3e330be1a6849269fec5d4b7b42b0330cede.tar.gz
nowayforward_human-73ad3e330be1a6849269fec5d4b7b42b0330cede.zip
feat(views): Implement list (get) view
Diffstat (limited to 'views/list')
-rw-r--r--views/list/index.php22
-rw-r--r--views/list/meta.php4
2 files changed, 26 insertions, 0 deletions
diff --git a/views/list/index.php b/views/list/index.php
new file mode 100644
index 0000000..01c18b4
--- /dev/null
+++ b/views/list/index.php
@@ -0,0 +1,22 @@
+<?php
+ $list = null;
+ $author = null;
+
+ try {
+ $list = Database\ArchiveList::fromDB($lid);
+ $author = Database\User::fromDBuid($list->AuthorUID);
+ }
+ catch(Exception $e) {}
+?>
+
+<?php if ($list !== null): ?>
+ <section>
+ <p><?= $list->Name ?></p>
+ <p><?= $list->Description ?></p>
+ <p><?= $author->Username ?></p>
+ </section>
+<?php else: ?>
+ <p>
+ List doesn't exist
+ </p>
+<?php endif; ?>
diff --git a/views/list/meta.php b/views/list/meta.php
new file mode 100644
index 0000000..137794e
--- /dev/null
+++ b/views/list/meta.php
@@ -0,0 +1,4 @@
+<?php
+
+$lid = explode('/', $uri, 4)[2];
+$title = 'List';