blob: 35182f1e2cab20879a5da61f917d96e2e3a5c584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
abstract class ItemFactory extends Factory implements FactoryInterface {
#===========================================================================
# Build instance by ID
#===========================================================================
public static function build($itemID): Item {
if(!$Instance = parent::fetchInstance($itemID)) {
$Item = (new ReflectionClass(get_called_class()))->getNamespaceName().'\\Item';
$Instance = parent::storeInstance($itemID, new $Item($itemID, \Application::getDatabase()));
}
return $Instance;
}
#===========================================================================
# Build instance by slug
#===========================================================================
public static function buildBySlug($slug): \Item {
$Item = (new ReflectionClass(get_called_class()))->getNamespaceName().'\\Item';
return self::build($Item::getIDByField('slug', $slug, \Application::getDatabase()));
}
}
?>
|