summaryrefslogtreecommitdiffstats
path: root/core/namespace/Post/Factory.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Post/Factory.php')
-rw-r--r--core/namespace/Post/Factory.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/namespace/Post/Factory.php b/core/namespace/Post/Factory.php
new file mode 100644
index 0000000..34aa5e4
--- /dev/null
+++ b/core/namespace/Post/Factory.php
@@ -0,0 +1,9 @@
+<?php
+namespace Post;
+
+class Factory extends \ItemFactory {
+ public static function buildBySlug($slug): \Item {
+ return self::build(Item::getIDByField('slug', $slug, \Application::getDatabase()));
+ }
+}
+?> \ No newline at end of file