echo '<td><input name="name[' . $ID . ']" value="' . htmlspecialchars($data['name']) . '" size="20"></td>';
 // Internal name
 echo '<td>' . $data['system_name'] . '</td>';
 echo '<td class="center">';
 if ($data['num_links'] == 0 && $haveright) {
     // Show "delete" link, when ACL is right and no usages
     echo '<input name="delete[' . $ID . ']" class="submit" type="submit" value=\'' . _sx('button', 'Delete permanently') . '\'>';
 } else {
     // Show usages
     echo sprintf(_n('Used by %1$s device', 'Used by %1$s devices', $data['num_links'], 'customfields'), $data['num_links']);
 }
 echo '</td>';
 // show Search/Add-Link to manage dropdown fields
 echo '<td>';
 $item = new PluginCustomfieldsDropdown();
 $table = $item->getTable();
 $rand = mt_rand();
 $name = Dropdown::EMPTY_VALUE;
 $comment = "";
 $tmpname = Dropdown::getDropdownName($table, '', 1);
 if ($tmpname["name"] != "&nbsp;") {
     $name = $tmpname["name"];
     $comment = $tmpname["comment"];
 }
 // Manage items
 $options_tooltip['link'] = $CFG_GLPI["root_doc"] . '/plugins/customfields/front/dropdownsitem.php';
 $options_tooltip['linktarget'] = '_blank';
 Html::showToolTip($comment, $options_tooltip);
 // Add item
 $itemFormUrl = $CFG_GLPI["root_doc"] . '/plugins/customfields/front/dropdownsitem.form.php' . "?popup=1&amp;rand=" . $rand . "&amp;plugin_customfields_dropdowns_id=" . $ID;
 echo "<img alt='' title=\"" . _sx('button', 'Add') . "\" src='" . $CFG_GLPI["root_doc"] . "/pics/add_dropdown.png' style='cursor:pointer; margin-left:2px;'" . "onClick=\"var w = window.open('" . $itemFormUrl . "' ,'glpipopup', 'height=400, " . "width=1000, top=100, left=100, scrollbars=yes' );w.focus();\">";