diff options
Diffstat (limited to 'main/app/system/Sprinkle/Sprinkle.php')
-rwxr-xr-x | main/app/system/Sprinkle/Sprinkle.php | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/main/app/system/Sprinkle/Sprinkle.php b/main/app/system/Sprinkle/Sprinkle.php new file mode 100755 index 0000000..4707025 --- /dev/null +++ b/main/app/system/Sprinkle/Sprinkle.php @@ -0,0 +1,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; + } +} |