Example #1
0
 public function __construct()
 {
     $this['cache'] = \xpl\Cache\Cache::instance();
     $this['session'] = \xpl\Session\Session::instance();
     $this['events'] = new \xpl\Event\Manager();
     $this['bundles'] = new BundleManager($this['events']);
     $this['router'] = new \xpl\Routing\Router();
     $this['kernel'] = new Kernel($this);
     $this['dispatcher'] = function () {
         return new Dispatcher();
     };
     $this['request'] = function ($di) {
         $request = \xpl\Web\Request::createFromGlobals();
         $request->setSession($di['session']);
         return $request;
     };
     $this['response'] = function ($di) {
         return new \xpl\Web\Response($di['request']);
     };
     $this['dbal'] = function ($di) {
         return new \xpl\Database\ConnectionPool($di['env']->getPath('env'));
     };
     $this['services'] = function () {
         return new \xpl\Data\Service\Registry();
     };
     $this['api'] = function () {
         return new \xpl\Api\Manager();
     };
     $this['resource.factory'] = function () {
         return new \xpl\Routing\Resource\Factory();
     };
     $this['url'] = function ($di) {
         return new \xpl\Utility\Url($di['request']->getUri(), $di['request']->getQuery());
     };
 }
Example #2
0
 /**
  * Whether the cache persists (i.e. we have a "real" driver, not memory).
  */
 function cache_persists()
 {
     return !Cache::instance()->getDriver() instanceof \xpl\Cache\Driver\MemoryDriver;
 }