aboutsummaryrefslogtreecommitdiff
path: root/lib/pages.php
diff options
context:
space:
mode:
authorEvgeny Zinoviev <me@ch1p.io>2022-07-09 19:40:17 +0300
committerEvgeny Zinoviev <me@ch1p.io>2022-07-09 19:40:17 +0300
commitf7bfdf58def6aadc922e1632f407d1418269a0d7 (patch)
treed7a0b2819e6a26c11d40ee0b27267ea827fbb345 /lib/pages.php
initial
Diffstat (limited to 'lib/pages.php')
-rw-r--r--lib/pages.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/pages.php b/lib/pages.php
new file mode 100644
index 0000000..281ee52
--- /dev/null
+++ b/lib/pages.php
@@ -0,0 +1,32 @@
+<?php
+
+class pages {
+
+ public static function add(array $data): ?int {
+ $db = getDb();
+ $data['ts'] = time();
+ $data['html'] = markup::markdownToHtml($data['md']);
+ if (!$db->insert('pages', $data))
+ return null;
+ return $db->insertId();
+ }
+
+ public static function delete(Page $page): void {
+ getDb()->query("DELETE FROM pages WHERE short_name=?", $page->shortName);
+ }
+
+ public static function getPageByName(string $short_name): ?Page {
+ $db = getDb();
+ $q = $db->query("SELECT * FROM pages WHERE short_name=?", $short_name);
+ return $db->numRows($q) ? new Page($db->fetch($q)) : null;
+ }
+
+ /**
+ * @return Page[]
+ */
+ public static function getAll(): array {
+ $db = getDb();
+ return array_map('Page::create_instance', $db->fetchAll($db->query("SELECT * FROM pages")));
+ }
+
+} \ No newline at end of file