Save new folder
This commit is contained in:
128
ajax/dropdownMassiveActionAddValidator.php
Normal file
128
ajax/dropdownMassiveActionAddValidator.php
Normal file
@ -0,0 +1,128 @@
|
||||
<?php
|
||||
/**
|
||||
* ---------------------------------------------------------------------
|
||||
* GLPI - Gestionnaire Libre de Parc Informatique
|
||||
* Copyright (C) 2015-2020 Teclib' and contributors.
|
||||
*
|
||||
* http://glpi-project.org
|
||||
*
|
||||
* based on GLPI - Gestionnaire Libre de Parc Informatique
|
||||
* Copyright (C) 2003-2014 by the INDEPNET Development Team.
|
||||
*
|
||||
* ---------------------------------------------------------------------
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This file is part of GLPI.
|
||||
*
|
||||
* GLPI 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 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* GLPI 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 GLPI. If not, see <http://www.gnu.org/licenses/>.
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
/**
|
||||
* @since 0.85
|
||||
*/
|
||||
|
||||
$AJAX_INCLUDE = 1;
|
||||
include ('../inc/includes.php');
|
||||
|
||||
header("Content-Type: text/html; charset=UTF-8");
|
||||
Html::header_nocache();
|
||||
|
||||
if (isset($_POST["validatortype"])) {
|
||||
switch ($_POST["validatortype"]) {
|
||||
case 'user' :
|
||||
echo "<input type='hidden' name='groups_id' value=0 />";
|
||||
User::dropdown(['name' => 'users_id_validate',
|
||||
'entity' => $_SESSION["glpiactive_entity"],
|
||||
'right' => ['validate_request', 'validate_incident']]);
|
||||
|
||||
echo "<br><br>".__('Comments')." ";
|
||||
echo "<textarea name='comment_submission' cols='50' rows='6'></textarea> ";
|
||||
|
||||
echo "<input type='submit' name='add' value=\""._sx('button', 'Add')."\" class='submit'>";
|
||||
break;
|
||||
|
||||
case 'group' :
|
||||
echo "<input type='hidden' name='users_id_validate' value=0 />";
|
||||
$rand = Group::dropdown(['name' => 'groups_id',
|
||||
'entity' => $_SESSION["glpiactive_entity"]]);
|
||||
|
||||
$param = ['validatortype' => 'group_user',
|
||||
'groups_id' =>'__VALUE__',
|
||||
'right' => ['validate_request', 'validate_incident']];
|
||||
|
||||
Ajax::updateItemOnSelectEvent("dropdown_groups_id$rand", "show_groups_users",
|
||||
$CFG_GLPI["root_doc"]."/ajax/dropdownMassiveActionAddValidator.php",
|
||||
$param);
|
||||
|
||||
echo "<br><span id='show_groups_users'> </span>\n";
|
||||
break;
|
||||
|
||||
case 'group_user' :
|
||||
|
||||
$opt = ['groups_id' => $_POST["groups_id"],
|
||||
'right' => $_POST['right'],
|
||||
'entity' => $_SESSION["glpiactive_entity"]];
|
||||
|
||||
$groups_users = TicketValidation::getGroupUserHaveRights($opt);
|
||||
|
||||
$users = [];
|
||||
$param['values'] = [];
|
||||
foreach ($groups_users as $data) {
|
||||
$users[$data['id']] = formatUserName($data['id'], $data['name'], $data['realname'],
|
||||
$data['firstname']);
|
||||
}
|
||||
|
||||
if (isset($_POST['all_users'])
|
||||
&& $_POST['all_users']) {
|
||||
$param['values'] = array_keys($users);
|
||||
}
|
||||
|
||||
$param['multiple']= true;
|
||||
$param['display'] = true;
|
||||
$param['size'] = count($users);
|
||||
|
||||
Dropdown::showFromArray("users_id_validate", $users, $param);
|
||||
|
||||
// Display all/none buttons to select all or no users in group
|
||||
if (!empty($_POST['groups_id'])) {
|
||||
echo "<a id='all_users' class='vsubmit'>".__('All')."</a>";
|
||||
$param_button = [
|
||||
'validatortype' => 'group_user',
|
||||
'users_id_validate' => '',
|
||||
'all_users' => 1,
|
||||
'groups_id' => $_POST['groups_id'],
|
||||
'right' => ['validate_request', 'validate_incident'],
|
||||
'entity' => $_SESSION["glpiactive_entity"],
|
||||
];
|
||||
Ajax::updateItemOnEvent('all_users', 'show_groups_users',
|
||||
$CFG_GLPI["root_doc"]."/ajax/dropdownMassiveActionAddValidator.php",
|
||||
$param_button, ['click']);
|
||||
|
||||
echo " <a id='no_users' class='vsubmit'>".__('None')."</a>";
|
||||
$param_button['all_users'] = 0;
|
||||
Ajax::updateItemOnEvent('no_users', 'show_groups_users',
|
||||
$CFG_GLPI["root_doc"]."/ajax/dropdownMassiveActionAddValidator.php",
|
||||
$param_button, ['click']);
|
||||
}
|
||||
|
||||
echo "<br><br>".__('Comments')." ";
|
||||
echo "<textarea name='comment_submission' cols='50' rows='6'></textarea> ";
|
||||
|
||||
echo "<input type='submit' name='add' value=\""._sx('button', 'Add')."\" class='submit'>";
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user