"web/git@code.osu.edu:asc-web-services/drupal-upstream.git" did not exist on "d903ae5117f08943f4a5d0fb9b125eb0b3184ca5"
Newer
Older
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
<?php
namespace Drupal\simple_sitemap;
use Drupal\Core\Config\ConfigFactory;
/**
* Class SimplesitemapSettings
* @package Drupal\simple_sitemap
*/
class SimplesitemapSettings {
/**
* @var \Drupal\Core\Config\ConfigFactory
*/
protected $configFactory;
/**
* SimplesitemapSettings constructor.
* @param \Drupal\Core\Config\ConfigFactory $config_factory
*/
public function __construct(ConfigFactory $config_factory) {
$this->configFactory = $config_factory;
}
/**
* Returns a specific sitemap setting or a default value if setting does not
* exist.
*
* @param string $name
* Name of the setting, like 'max_links'.
*
* @param mixed $default
* Value to be returned if the setting does not exist in the configuration.
*
* @return mixed
* The current setting from configuration or a default value.
*/
public function getSetting($name, $default = FALSE) {
$setting = $this->configFactory
->get('simple_sitemap.settings')
->get($name);
return NULL !== $setting ? $setting : $default;
}
public function getSettings() {
return $this->configFactory
->get('simple_sitemap.settings')
->get();
}
/**
* Stores a specific sitemap setting in configuration.
*
* @param string $name
* Setting name, like 'max_links'.
* @param mixed $setting
* The setting to be saved.
*
* @return $this
*/
public function saveSetting($name, $setting) {
$this->configFactory->getEditable('simple_sitemap.settings')
->set($name, $setting)->save();
return $this;
}
}