. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * ITILTemplateHiddenField Class * * Predefined fields for ITIL template class * * @since 9.5.0 **/ abstract class ITILTemplateHiddenField extends ITILTemplateField { static function getTypeName($nb = 0) { return _n('Hidden field', 'Hidden fields', $nb); } function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { // can exists for template if ($item instanceof ITILTemplate && Session::haveRight("itiltemplate", READ)) { $nb = 0; if ($_SESSION['glpishow_count_on_tabs']) { $nb = countElementsInTable($this->getTable(), [static::$items_id => $item->getID()]); } return self::createTabEntry(self::getTypeName(Session::getPluralNumber()), $nb); } return ''; } function post_purgeItem() { global $DB; parent::post_purgeItem(); $itil_class = static::$itiltype; $itil_object = new $itil_class; $itemtype_id = $itil_object->getSearchOptionIDByField('field', 'itemtype', $itil_object->getTable()); $items_id_id = $itil_object->getSearchOptionIDByField('field', 'items_id', $itil_object->getTable()); // Try to delete itemtype -> delete items_id if ($this->fields['num'] == $itemtype_id) { $iterator = $DB->request([ 'SELECT' => 'id', 'FROM' => $this->getTable(), 'WHERE' => [ static::$items_id => $this->fields[static::$itiltype], 'num' => $items_id_id ] ]); if (count($iterator)) { $result = $iterator->next(); $a = new static(); $a->delete(['id' => $result['id']]); } } } /** * Get hidden fields for a template * * @since 0.83 * * @param $ID integer the template ID * @param $withtypeandcategory boolean with type and category (false by default) * * @return array of hidden fields **/ function getHiddenFields($ID, $withtypeandcategory = false) { global $DB; $iterator = $DB->request([ 'FROM' => $this->getTable(), 'WHERE' => [static::$items_id => $ID], 'ORDER' => 'id' ]); $tt_class = static::$itemtype; $tt = new $tt_class; $allowed_fields = $tt->getAllowedFields($withtypeandcategory); $fields = []; while ($rule = $iterator->next()) { if (isset($allowed_fields[$rule['num']])) { $fields[$allowed_fields[$rule['num']]] = $rule['num']; } } return $fields; } /** * Return fields who doesn't need to be used for this part of template * * @since 9.2 * * @return array the excluded fields (keys and values are equals) */ static function getExcludedFields() { return [ 175 => 175, // ticket's tasks (template) ]; } /** * Print the hidden fields * * @since 0.83 * * @param ITILTemplate $tt ITIL Template * @param boolean $withtemplate Template or basic item (default 0) * * @return void **/ static function showForITILTemplate(ITILTemplate $tt, $withtemplate = 0) { global $DB; $ID = $tt->fields['id']; if (!$tt->getFromDB($ID) || !$tt->can($ID, READ)) { return false; } $canedit = $tt->canEdit($ID); $ttm = new static; $fields = $tt->getAllowedFieldsNames(false); $fields = array_diff_key($fields, self::getExcludedFields()); $rand = mt_rand(); $iterator = $DB->request([ 'FROM' => static::getTable(), 'WHERE' => [static::$items_id => $ID] ]); $numrows = count($iterator); $hiddenfields = []; $used = []; while ($data = $iterator->next()) { $hiddenfields[$data['id']] = $data; $used[$data['num']] = $data['num']; } if ($canedit) { echo "
| "; echo static::getTypeName(count($iterator)); echo " | ||
|---|---|---|
| "; $header_top .= Html::getCheckAllAsCheckbox('mass'.$ttm->getType().$rand)." | "; $header_bottom .= ""; $header_bottom .= Html::getCheckAllAsCheckbox('mass'.$ttm->getType().$rand)." | "; } $header_end .= "".__('Name')." | "; $header_end .= "
| ".Html::getMassiveActionCheckBox($ttm->getType(), $data["id"])." | "; } echo "".$fields[$data['num']]." | "; echo "|
| ".__('No item found')." | ||