From 52b077a48c743ba4d08ac00520a0bf1ef6deef5f Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Fri, 24 Feb 2017 21:27:59 +0100
Subject: Initial commit.

---
 core/namespace/Page/Factory.php | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 core/namespace/Page/Factory.php

(limited to 'core/namespace/Page/Factory.php')

diff --git a/core/namespace/Page/Factory.php b/core/namespace/Page/Factory.php
new file mode 100644
index 0000000..f53b35f
--- /dev/null
+++ b/core/namespace/Page/Factory.php
@@ -0,0 +1,9 @@
+<?php
+namespace Page;
+
+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
-- 
cgit v1.2.3