. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * ITILTemplateMandatoryField Class * * Predefined fields for ITIL template class * * @since 9.5.0 **/ abstract class ITILTemplateMandatoryField extends ITILTemplateField { static function getTypeName($nb = 0) { return _n('Mandatory field', 'Mandatory 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 mandatory fields for a template * * @since 0.83 * * @param integer $ID the template ID * @param boolean $withtypeandcategory with type and category (true by default) * * @return array of mandatory fields **/ function getMandatoryFields($ID, $withtypeandcategory = true) { 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 ]; } /** * Print the mandatory 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 = $ttm->getAllFields($tt); $simplified_fields = $tt->getSimplifiedInterfaceFields(); $both_interfaces = sprintf(__('%1$s + %2$s'), __('Simplified interface'), __ ('Standard interface')); $rand = mt_rand(); $iterator = $DB->request([ 'FROM' => static::getTable(), 'WHERE' => [static::$items_id => $ID] ]); $numrows = count($iterator); $mandatoryfields = []; $used = []; while ($data = $iterator->next()) { $mandatoryfields[$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 .= "".__("Profile's interface")." | "; $header_end .= "
| ".Html::getMassiveActionCheckBox($ttm->getType(), $data["id"])." | "; } echo "".$fields[$data['num']]." | "; echo ""; if (in_array($data['num'], $simplified_fields)) { echo $both_interfaces; } else { echo __('Standard interface'); } echo " | "; echo "|
| ".__('No item found')." | |||