-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathModule.php
More file actions
144 lines (127 loc) · 3.44 KB
/
Module.php
File metadata and controls
144 lines (127 loc) · 3.44 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
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
139
140
141
142
143
144
<?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\helpers\ThemeHelper;
use humhub\modules\cleanTheme\models\Configuration;
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 bool $collapsibleLeftNavigation = false;
private ?Configuration $_configuration = null;
public const THEME_NAME = 'Clean';
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', 'Modern, smooth and uncluttered theme');
}
/**
* @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->generateScssRootFile();
} catch (Exception $e) {
Yii::error('Could not generate SCSS root file: ' . $e->getMessage(), 'clean-theme');
return false;
}
$this->enableTheme();
return true;
}
return false;
}
public function update()
{
parent::update();
// Recreate SCSS root file because it was removed by module update
try {
$this->configuration->generateScssRootFile();
} catch (Exception $e) {
Yii::error('Could not generate SCSS root file: ' . $e->getMessage(), 'clean-theme');
}
// Rebuild CSS: TODO remove for 1.18-beta-4+
try {
ThemeHelper::buildCss();
} catch (Exception $e) {
Yii::error('Could not build CSS: ' . $e->getMessage(), 'clean-theme');
}
}
/**
* @return void
*/
private function disableTheme()
{
if (static::isThemeBasedActive()) {
$ceTheme = ThemeHelper::getThemeByName('HumHub');
$ceTheme?->activate();
}
}
/**
* @return void
*/
private function enableTheme()
{
if (!static::isThemeBasedActive()) {
$cleanTheme = ThemeHelper::getThemeByName(self::THEME_NAME);
$cleanTheme?->activate();
}
}
/**
* Checks if the Clean Theme, or a child theme of it, is currently active
*/
public static function isThemeBasedActive(): bool
{
foreach (ThemeHelper::getThemeTree(Yii::$app->view->theme) as $theme) {
if ($theme->name === self::THEME_NAME) {
return true;
}
}
return false;
}
}