diff options
Diffstat (limited to 'core/namespace/Page/Factory.php')
-rw-r--r-- | core/namespace/Page/Factory.php | 9 |
1 files changed, 9 insertions, 0 deletions
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 |