. * --------------------------------------------------------------------- */ // Direct access to file if (strpos($_SERVER['PHP_SELF'], "subvisibility.php")) { $AJAX_INCLUDE = 1; include ('../inc/includes.php'); header("Content-Type: text/html; charset=UTF-8"); Html::header_nocache(); } Session::checkLoginUser(); if (isset($_POST['type']) && !empty($_POST['type']) && isset($_POST['items_id']) && ($_POST['items_id'] > 0)) { $prefix = ''; $suffix = ''; if (isset($_POST['prefix']) && !empty($_POST['prefix'])) { $prefix = $_POST['prefix'].'['; $suffix = ']'; } switch ($_POST['type']) { case 'Group' : case 'Profile' : $params = ['value' => $_SESSION['glpiactive_entity'], 'name' => $prefix.'entities_id'.$suffix]; if (Session::canViewAllEntities()) { $params['toadd'] = [-1 => __('No restriction')]; } echo "
| "; echo Entity::getTypeName(1); echo " | "; Entity::dropdown($params); echo " | "; echo __('Child entities'); echo " | "; Dropdown::showYesNo($prefix.'is_recursive'.$suffix); echo " |