forked from MichaelRoosz/plugin-GroupPermissions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGroupPermissions.php
79 lines (71 loc) · 2.04 KB
/
GroupPermissions.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
<?php
/**
* Matomo - free/libre analytics platform
*
* @link http://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
namespace Piwik\Plugins\GroupPermissions;
use Piwik\Plugin;
class GroupPermissions extends Plugin
{
public function install()
{
$model = new Model();
$model->install();
}
public function uninstall()
{
$model = new Model();
$model->uninstall();
}
/**
* @see Piwik\Plugin::registerEvents
*/
public function registerEvents()
{
return array(
'AssetManager.getJavaScriptFiles' => 'getJsFiles',
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
'SitesManager.deleteSite.end' => 'deleteSite',
'UsersManager.deleteUser' => 'deleteUser',
);
}
/**
* Return list of plug-in specific JavaScript files to be imported by the asset manager
*
* @see Piwik\AssetManager
*/
public function getJsFiles(&$jsFiles)
{
$jsFiles[] = "plugins/GroupPermissions/javascripts/groupPermissions.js";
$jsFiles[] = "plugins/GroupPermissions/javascripts/choices.min.js";
}
/**
* Return list of plug-in specific Stylesheet files to be imported by the asset manager
*
* @see Piwik\AssetManager
*/
public function getStylesheetFiles(&$stylesheetFiles)
{
$stylesheetFiles[] = "plugins/GroupPermissions/stylesheets/groupPermissions.less";
$stylesheetFiles[] = "plugins/GroupPermissions/stylesheets/choices.less";
}
/**
* Delete group preferences associated with a particular site
*/
public function deleteSite($idSite)
{
$model = new Model();
$model->removeAllPermissionsForSite($idSite);
}
/**
* Delete group preferences associated with a particular user
*/
public function deleteUser($login)
{
$model = new Model();
$model->removeUserFromAllGroups($login);
}
}