Admin extends Sprinkle
Bootstrapper class for the 'admin' sprinkle.
Represents a sprinkle (plugin, theme, site, etc), and the code required to boot up that sprinkle.
Tags
Table of Contents
| $ci | ContainerInterface | |
|---|---|---|
| $servicesproviders | string[] | |
| __construct() | Create a new Sprinkle object. | mixed | 
| getSubscribedEvents() | By default assign all methods as listeners using the default priority. | array | 
| registerServices() | Register all services providers. | void | 
Properties
$ci
        protected
                ContainerInterface
        $ci
            
            
$servicesproviders
        protected
                string[]
        $servicesproviders
         = []    
                Tags
Methods
__construct()
Create a new Sprinkle object.
        public
                                __construct(
                    
                            $ci :
                ContainerInterface
                            
                )
        : mixed
    
    
            Parameters
- $ci : ContainerInterface
 The global container object, which holds all your services.
Return values
mixedgetSubscribedEvents()
By default assign all methods as listeners using the default priority.
        public
                        static        getSubscribedEvents(
                )
        : array
    
    
    
        
            Return values
arrayregisterServices()
Register all services providers.
        public
                                registerServices(
                )
        : void