-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathModule.php
125 lines (102 loc) · 2.92 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
<?php
/**
* External Websites
* @link https://github.com/cuzy-app/external-websites
* @license https://github.com/cuzy-app/external-websites/blob/master/docs/LICENSE.md
* @author [Marc FARRE](https://marc.fun)
*/
namespace humhub\modules\externalWebsites;
use humhub\modules\content\components\ContentContainerActiveRecord;
use humhub\modules\content\components\ContentContainerModule;
use humhub\modules\externalWebsites\models\Page;
use humhub\modules\externalWebsites\models\Website;
use humhub\modules\space\models\Space;
use Yii;
class Module extends ContentContainerModule
{
/**
* @var string defines the icon
*/
public $icon = 'desktop';
/**
* @var string defines path for resources, including the screenshots path for the marketplace
*/
public $resourcesPath = 'resources';
/**
* @var string HS512 JWT secret key
* Optional, to enable possiblity to auto add groups to the users
*/
public $jwtKey = '';
/**
* @var bool
* Adds `humhub-is-embedded` class on <html> tag if HumHub is embedded in an iframe
* Loads iframeResizer plugin for content window
*/
public $registerAssetsIfHumhubIsEmbedded = false;
/**
* @inheritdoc
*/
public function getContentContainerTypes()
{
return [Space::class];
}
/**
* @inheritdoc
*/
public function getContentClasses(): array
{
return [Page::class];
}
/**
* @inheritdoc
*/
public function getPermissions($contentContainer = null)
{
// check permission management to customize access to this module
return [];
}
/**
* @inheritdoc
*/
public function disable()
{
foreach (Page::find()->each() as $page) {
$page->hardDelete();
}
Website::deleteAll();
parent::disable();
}
/**
* @inheritdoc
*/
public function enableContentContainer(ContentContainerActiveRecord $container)
{
return parent::enableContentContainer($container);
}
/**
* @inheritdoc
*/
public function disableContentContainer(ContentContainerActiveRecord $container)
{
parent::disableContentContainer($container);
foreach (Website::findAll(['space_id' => $container->id]) as $website) {
$website->delete();
}
}
/**
* @inheritdoc
*/
public function getContentContainerName(ContentContainerActiveRecord $container)
{
return Yii::t('ExternalWebsitesModule.base', 'External websites');
}
/**
* @inheritdoc
*/
public function getContentContainerDescription(ContentContainerActiveRecord $container)
{
if ($container instanceof Space) {
return Yii::t('ExternalWebsitesModule.base', 'Creates a content for each external website page, enabling to have Humhub addons (comments, like, files, etc.) in theses pages.');
}
}
}