-
Notifications
You must be signed in to change notification settings - Fork 2
/
hook.php
125 lines (115 loc) · 4.22 KB
/
hook.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
/**
* -------------------------------------------------------------------------
* Deploy plugin for GLPI
* -------------------------------------------------------------------------
*
* LICENSE
*
* This file is part of Deploy.
*
* Deploy is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Deploy is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Deploy. If not, see <http://www.gnu.org/licenses/>.
* -------------------------------------------------------------------------
* @copyright Copyright (C) 2022-2024 by Deploy plugin team.
* @license GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
* @link https://github.com/pluginsGLPI/deploy
* -------------------------------------------------------------------------
*/
use GlpiPlugin\Deploy\Computer\Group;
use GlpiPlugin\Deploy\Computer\GroupDynamic;
use GlpiPlugin\Deploy\Computer\GroupStatic;
use GlpiPlugin\Deploy\Package;
use GlpiPlugin\Deploy\PackageJob;
use GlpiPlugin\Deploy\PackageAction;
use GlpiPlugin\Deploy\PackageCheck;
use GlpiPlugin\Deploy\PackageFile;
use GlpiPlugin\Deploy\PackageTarget;
use GlpiPlugin\Deploy\Profile;
use GlpiPlugin\Deploy\PackageTimeslot;
use GlpiPlugin\Deploy\Repository;
use GlpiPlugin\Deploy\Timeslot;
use GlpiPlugin\Deploy\TimeslotRange;
/**
* -------------------------------------------------------------------------
* Deploy plugin for GLPI
* -------------------------------------------------------------------------
*
* LICENSE
*
* This file is part of Deploy.
*
* Deploy is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* Deploy is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Deploy. If not, see <http://www.gnu.org/licenses/>.
* -------------------------------------------------------------------------
* @copyright Copyright (C) 2022-2024 by Deploy plugin team.
* @license GPLv3 https://www.gnu.org/licenses/gpl-3.0.html
* @link https://github.com/pluginsGLPI/deploy
* -------------------------------------------------------------------------
*/
// Define Dropdown tables to be manage in GLPI :
function plugin_deploy_getDropdown()
{
$dropdowns = [Timeslot::class => Timeslot::getTypeName(2)];
return $dropdowns;
}
function plugin_deploy_install()
{
$version = plugin_version_deploy();
$migration = new Migration($version['version']);
PackageAction::install($migration);
PackageCheck::install($migration);
PackageFile::install($migration);
Package::install($migration);
PackageJob::install($migration);
PackageTarget::install($migration);
Profile::install($migration);
Repository::install($migration);
Group::install($migration);
GroupDynamic::install($migration);
GroupStatic::install($migration);
Timeslot::install($migration);
TimeslotRange::install($migration);
return true;
}
/**
* Plugin uninstall process
*
* @return boolean
*/
function plugin_deploy_uninstall()
{
$migration = new Migration(PLUGIN_DEPLOY_VERSION);
PackageTarget::uninstall($migration);
Package::uninstall($migration);
PackageJob::uninstall($migration);
PackageTarget::uninstall($migration);
Profile::uninstall($migration);
Repository::uninstall($migration);
Group::uninstall($migration);
GroupDynamic::uninstall($migration);
GroupStatic::uninstall($migration);
Timeslot::uninstall($migration);
TimeslotRange::uninstall($migration);
return true;
}