blob: 47070251fec924765017acb69cb840aed73e3baa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System\Sprinkle;
use Interop\Container\ContainerInterface;
use RocketTheme\Toolbox\Event\EventSubscriberInterface;
use Slim\App;
/**
* Sprinkle class
*
* Represents a sprinkle (plugin, theme, site, etc), and the code required to boot up that sprinkle.
*
* @author Alex Weissman (https://alexanderweissman.com)
*/
class Sprinkle implements EventSubscriberInterface
{
/**
* @var ContainerInterface The global container object, which holds all your services.
*/
protected $ci;
/**
* By default assign all methods as listeners using the default priority.
*
* @return array
*/
public static function getSubscribedEvents()
{
$methods = get_class_methods(get_called_class());
$list = [];
foreach ($methods as $method) {
if (strpos($method, 'on') === 0) {
$list[$method] = [$method, 0];
}
}
return $list;
}
/**
* Create a new Sprinkle object.
*
* @param ContainerInterface $ci The global container object, which holds all your services.
*/
public function __construct(ContainerInterface $ci)
{
$this->ci = $ci;
}
}
|