System

A bootstrapper that reads configuration and creates backend and frontend containers.

class System extends Configuration

This class expects a Traversable full of class names in the system.modules configuration setting. Each class name must extend Labrys\Module or an UnexpectedValueException will be thrown.

Copyright
2015-2016 Appertly
Since
0.5.0
License
Apache-2.0

Instance Properties

Protected
NameTypeSummary
$backendObjects

The backend container

$configProperties

The config container

$frontendObjects

The frontend container

$modulesImmVector<Module>

Instantiated modules

Constructors / Destructors

Public
ReturnsSignature and Description
void
__construct(ConstMap<string,mixed> $config)

Creates a new System.

Instance Methods

Public
ReturnsSignature and Description
Objects

Gets the container with backend classes.

Properties

Gets the configuration settings container.

Objects

Gets the container with frontend classes.

ImmVector<Module>

Gets the loaded modules.

Property Details

$backend

protected Objects $backend

The backend container

$config

Inherited from Configuration

protected Properties $config

The config container

$frontend

protected Objects $frontend

The frontend container

$modules

Inherited from Configuration

protected ImmVector<Module> $modules

Instantiated modules

Method Details

__construct

public function __construct(ConstMap<string,mixed> $config)

Creates a new System.

This constructor expects a Traversable full of class names in the system.modules configuration setting. Each class name must extend Labrys\Module or an UnexpectedValueException will be thrown.

Parameters
NameTypeDescription
$configConstMap<string,mixed>

The system configuration

Throws
TypeConditions
UnexpectedValueException

if a module class doesn't extend Labrys\Module

getBackendContainer

public function getBackendContainer()

Gets the container with backend classes.

Returns
TypeDescription
Objects

The backend container

getConfigContainer

Inherited from Configuration

public function getConfigContainer()

Gets the configuration settings container.

Returns
TypeDescription
Properties

The config container

getFrontendContainer

public function getFrontendContainer()

Gets the container with frontend classes.

Returns
TypeDescription
Objects

The frontend container

getModules

Inherited from Configuration

public function getModules()

Gets the loaded modules.

Returns
TypeDescription
ImmVector<Module>

The loaded modules