-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathModule.php
138 lines (123 loc) · 3.34 KB
/
Module.php
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
126
127
128
129
130
131
132
133
134
135
136
137
138
<?php
/**
* Clean Theme
* @link https://github.com/cuzy-app/clean-theme
* @license https://github.com/cuzy-app/clean-theme/blob/master/docs/LICENCE.md
* @author [Marc FARRE](https://marc.fun) for [CUZY.APP](https://www.cuzy.app)
*/
namespace humhub\modules\cleanTheme;
use humhub\libs\DynamicConfig;
use humhub\modules\cleanTheme\models\Configuration;
use humhub\modules\ui\view\helpers\ThemeHelper;
use Yii;
use yii\base\Exception;
use yii\helpers\Url;
/**
*
* @property-read mixed $configUrl
* @property-read Configuration $configuration
*/
class Module extends \humhub\components\Module
{
/**
* @inheridoc
*/
public string $icon = 'circle-o-notch';
/**
* @inheridoc
*/
public $resourcesPath = 'resources';
public bool $collapsibleLeftNavigation = false;
private ?Configuration $_configuration = null;
public function getConfiguration(): Configuration
{
if ($this->_configuration === null) {
$this->_configuration = new Configuration(['settingsManager' => $this->settings]);
$this->_configuration->loadBySettings();
}
return $this->_configuration;
}
public function getName()
{
return 'Clean Theme';
}
public function getDescription()
{
return Yii::t('CleanThemeModule.config', '"{Clean}" theme based on the community "{HumHub}" theme', [
'Clean' => 'Clean',
'HumHub' => 'HumHub',
]);
}
/**
* @inheritdoc
*/
public function getConfigUrl()
{
return Url::to(['/clean-theme/config']);
}
/**
* @inheritdoc
*/
public function disable()
{
$this->disableTheme();
parent::disable();
}
/**
* @inheritdoc
*/
public function enable()
{
if (parent::enable() !== false) {
try {
$this->configuration->generateDynamicCSSFile();
} catch (Exception $e) {
Yii::error('Could not generate dynamic CSS file: ' . $e->getMessage(), 'clean-theme');
return false;
}
$this->enableTheme();
return true;
}
return false;
}
public function update()
{
parent::update();
// Recreate dynamic CSS file because it was removed by module update
try {
$this->configuration->generateDynamicCSSFile();
} catch (Exception $e) {
Yii::error('Could not generate dynamic CSS file: ' . $e->getMessage(), 'clean-theme');
}
}
/**
* @return void
*/
private function disableTheme()
{
foreach (ThemeHelper::getThemeTree(Yii::$app->view->theme) as $theme) {
if ($theme->name === 'Clean') {
$ceTheme = ThemeHelper::getThemeByName('HumHub');
$ceTheme->activate();
break;
}
}
}
/**
* @return void
*/
private function enableTheme()
{
// Check if already active
foreach (ThemeHelper::getThemeTree(Yii::$app->view->theme) as $theme) {
if ($theme->name === 'Clean') {
return;
}
}
$cleanTheme = ThemeHelper::getThemeByName('Clean');
if ($cleanTheme !== null) {
$cleanTheme->activate();
DynamicConfig::rewrite();
}
}
}