-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSettings.php
More file actions
77 lines (65 loc) · 1.61 KB
/
Settings.php
File metadata and controls
77 lines (65 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
namespace DevPledge\Integrations\Setting;
use Slim\Container;
/**
* Class Settings
* @package DevPledge\Integrations\Setting
*/
final class Settings extends Container {
/**
* Settings constructor.
*
* @param array $values
*/
public function __construct( array $values = [] ) {
foreach ( $values as $key => $value ) {
$this->offsetSet( $key, $value );
}
}
/**
* @return bool
*/
protected function displayErrorDetails() {
if ( getenv( 'production' ) ) {
return false;
}
return true;
}
/**
* @param array $container
*
* @return $this
*/
public function addInitialSetting( $container = [] ) {
parent::__construct( $container );
if ( ! isset( $this['settings']['displayErrorDetails'] ) ) {
$this['settings']['displayErrorDetails'] = $this->displayErrorDetails();
}
if ( ! isset( $this['settings']['addContentLengthHeader'] ) ) {
$this['settings']['addContentLengthHeader'] = false;
}
if ( ! isset( $this['settings']['integrations'] ) ) {
$this['settings']['integrations'] = new static();
}
return $this;
}
/**
* @param AbstractSetting $setting
* @param bool $overWrite
*
* @return $this
*/
public function addSetting( AbstractSetting $setting, $overWrite = false ) {
$container = $this;
if ( $overWrite ) {
$this[ $setting->getContainerKey() ] = function () use ( $container, $setting ) {
return $setting( $container );
};
} else if ( ! isset( $this[ $setting->getContainerKey() ] ) ) {
$this[ $setting->getContainerKey() ] = function () use ( $container, $setting ) {
return $setting( $container );
};
}
return $this;
}
}