mirror of
https://github.com/pluginsGLPI/example.git
synced 2025-06-28 06:58:43 +02:00
Fix rights
This commit is contained in:

committed by
Johan Cwiklinski

parent
46a15511a2
commit
e8acb472eb
4
hook.php
4
hook.php
@ -36,10 +36,10 @@
|
||||
// And to save it in the session
|
||||
function plugin_change_profile_example() {
|
||||
// For example : same right of computer
|
||||
if (Session::haveRight('computer', 'w')) {
|
||||
if (Session::haveRight('computer', UPDATE)) {
|
||||
$_SESSION["glpi_plugin_example_profile"] = array('example' => 'w');
|
||||
|
||||
} else if (Session::haveRight('computer', 'r')) {
|
||||
} else if (Session::haveRight('computer', READ)) {
|
||||
$_SESSION["glpi_plugin_example_profile"] = array('example' => 'r');
|
||||
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user