daux.io/libs/Config.php

157 lines
3.5 KiB
PHP
Raw Normal View History

<?php namespace Todaymade\Daux;
use ArrayObject;
use Todaymade\Daux\Tree\Content;
2015-07-17 23:38:06 +02:00
class Config extends ArrayObject
{
/**
* Merge an array into the object
*
* @param array $newValues
* @param bool $override
*/
public function merge($newValues, $override = true)
{
foreach ($newValues as $key => $value) {
2015-07-19 16:36:34 +02:00
// If the key doesn't exist yet,
// we can simply set it.
if (!array_key_exists($key, $this)) {
$this[$key] = $value;
continue;
}
2015-07-19 16:36:34 +02:00
// We already know this value exists
// so if we're in conservative mode
// we can skip this key
if ($override === false) {
continue;
}
// Merge the values only if
// both values are arrays
if (is_array($this[$key]) && is_array($value)) {
$this[$key] = array_replace_recursive($this[$key], $value);
} else {
$this[$key] = $value;
}
}
}
2015-07-17 23:38:06 +02:00
/**
* Merge an array into the object, ignore already added keys.
*
* @param $newValues
*/
public function conservativeMerge($newValues)
{
$this->merge($newValues, false);
}
public function getCurrentPage()
{
return $this['current_page'];
}
public function setCurrentPage(Content $entry)
{
$this['current_page'] = $entry;
}
2016-07-28 22:48:50 +02:00
public function getDocumentationDirectory()
{
return $this['docs_directory'];
}
2016-07-28 22:48:50 +02:00
public function setDocumentationDirectory($documentationPath)
{
$this['docs_directory'] = $documentationPath;
}
2016-07-28 22:48:50 +02:00
public function getThemesDirectory()
{
return $this['themes_directory'];
}
2016-09-21 23:30:01 +02:00
public function setThemesDirectory($directory)
{
$this['themes_directory'] = $directory;
}
public function setThemesPath($themePath)
{
$this['themes_path'] = $themePath;
}
public function getThemesPath()
{
return $this['themes_path'];
}
2016-07-28 22:48:50 +02:00
public function setFormat($format)
{
$this['format'] = $format;
}
2016-07-28 22:48:50 +02:00
public function getFormat()
{
return $this['format'];
}
public function hasTimezone()
{
return isset($this['timezone']);
}
public function getTimezone()
{
return $this['timezone'];
}
2016-07-28 22:48:50 +02:00
public function isMultilanguage()
{
return array_key_exists('languages', $this) && !empty($this['languages']);
}
public function isLive()
{
return $this['mode'] == Daux::LIVE_MODE;
}
public function isStatic()
{
return $this['mode'] == Daux::STATIC_MODE;
}
public function shouldInheritIndex()
{
// As the global configuration is always present, we
// need to test for the existence of the legacy value
// first. Then use the current value.
if (array_key_exists('live', $this) && array_key_exists('inherit_index', $this['live'])) {
return $this['live']['inherit_index'];
}
return $this['html']['inherit_index'];
}
public function setConfigurationOverrideFile($override_file)
{
$this['override_file'] = $override_file;
}
public function getConfigurationOverrideFile()
{
if (array_key_exists('override_file', $this)) {
return $this['override_file'];
}
return null;
}
public function getConfluenceConfiguration()
{
return $this['confluence'];
}
}