mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* @package Grav.Common.Processors
|
|
*
|
|
* @copyright Copyright (C) 2014 - 2016 RocketTheme, LLC. All rights reserved.
|
|
* @license MIT License; see LICENSE file for details.
|
|
*/
|
|
|
|
namespace Grav\Common\Processors;
|
|
|
|
class InitializeProcessor extends ProcessorBase implements ProcessorInterface {
|
|
|
|
public $id = 'init';
|
|
public $title = 'Initialize';
|
|
|
|
public function process() {
|
|
$this->container['config']->debug();
|
|
|
|
// Use output buffering to prevent headers from being sent too early.
|
|
ob_start();
|
|
if ($this->container['config']->get('system.cache.gzip')) {
|
|
// Enable zip/deflate with a fallback in case of if browser does not support compressing.
|
|
if (!@ob_start("ob_gzhandler")) {
|
|
ob_start();
|
|
}
|
|
}
|
|
|
|
// Initialize the timezone.
|
|
if ($this->container['config']->get('system.timezone')) {
|
|
date_default_timezone_set($this->container['config']->get('system.timezone'));
|
|
}
|
|
|
|
// Initialize uri, session.
|
|
$this->container['session']->init();
|
|
$this->container['uri']->init();
|
|
|
|
$this->container->setLocale();
|
|
}
|
|
|
|
}
|