This repository was archived by the owner on Apr 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpfastcache.module
125 lines (110 loc) · 3.7 KB
/
phpfastcache.module
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
use Drupal\Core\Routing\RouteMatchInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Implements hook_help().
*/
function phpfastcache_help(
$route_name,
RouteMatchInterface $route_match
): TranslatableMarkup {
if ($route_name === 'phpfastcache.admin_settings_form') {
$help = <<<HELP
<a href=":site_url" target="_blank">Phpfastcache</a> is a high-performance backend cache system.
It is intended for use in speeding up dynamic web applications by alleviating database load.
Check out the <a href=":github_url" target="_blank">Github support</a> for the Phpfastcache's library only.
HELP;
return t(
nl2br($help),
[
':site_url' => 'https://www.phpfastcache.com/',
':github_url' => 'https://github.com/PHPSocialNetwork/phpfastcache',
]
);
}
return t('');
}
/**
* @return bool
*/
function phpfastcache_is_library_installed(): bool {
return class_exists(\Phpfastcache\CacheManager::class);
}
/**
* @return bool
*/
function phpfastcache_is_settings_php_configured(): bool {
$cacheSettings = \Drupal\Core\Site\Settings::get('cache');
return isset($cacheSettings[ 'default' ]) && $cacheSettings[ 'default' ] === 'cache.backend.phpfastcache';
}
/**
* Implements hook_cache_flush().
*/
function phpfastcache_cache_flush() {
/**
* @todo Add cache flush handler
*/
}
/**
* Implements hook_requirements().
*/
function phpfastcache_requirements($phase) {
/**
* @see https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Extension%21module.api.php/function/hook_requirements/8.6.x
* @todo Add report status hook
*/
$cacheSettings = \Drupal\Core\Site\Settings::get('cache');
$phpfastcacheSettings = \Drupal::config('phpfastcache.settings');;
if (!phpfastcache_is_library_installed()) {
return [
'phpfastcache' => [
'title' => t('Phpfastcache library'),
'value' => t('Introuvable'),
'description' => t('Unavailable Phpfastcache library'),
'severity' => REQUIREMENT_ERROR,
],
];
}
if (!method_exists(\Phpfastcache\Api::class, 'getVersion')) {
return [
'phpfastcache_api' => [
'title' => t('Phpfastcache API'),
'value' => 'N/A',
'description' => t('Unavailable Phpfastcache API class'),
'severity' => REQUIREMENT_ERROR,
],
];
}
if (version_compare(\Phpfastcache\Api::getVersion(), '2.0.4') !== -1) {
return [
'phpfastcache_api' => [
'title' => t('Phpfastcache API'),
'value' => \Phpfastcache\Api::getVersion(),
'description' => '',
'severity' => REQUIREMENT_OK,
],
'phpfastcache_driver' => [
'title' => t('Phpfastcache Driver'),
'value' => ucfirst((string) $phpfastcacheSettings->get('phpfastcache_default_driver')),
'description' => '',
'severity' => REQUIREMENT_OK,
],
'phpfastcache_config' => [
'title' => t('Phpfastcache Settings'),
'value' => $cacheSettings[ 'default' ] === 'cache.backend.phpfastcache' ? t('Settings well configured') : t('Settings not configured'),
'description' => $cacheSettings[ 'default' ] === 'cache.backend.phpfastcache' ? t('') : t('Please update your settings.php to add the missing configuration'),
'severity' => $cacheSettings[ 'default' ] === 'cache.backend.phpfastcache' ? REQUIREMENT_OK : REQUIREMENT_ERROR,
]
];
}
else {
return [
'phpfastcache' => [
'title' => t('Phpfastcache library'),
'value' => \Phpfastcache\Api::getVersion(),
'description' => t('Phpfastcache API version is too old'),
'severity' => REQUIREMENT_ERROR,
],
];
}
}