. * --------------------------------------------------------------------- */ if (!defined('GLPI_ROOT')) { die("Sorry. You can't access this file directly"); } /** * @since 0.84 * * Change_Problem Class * * Relation between Changes and Problems **/ class Change_Problem extends CommonDBRelation{ // From CommonDBRelation static public $itemtype_1 = 'Change'; static public $items_id_1 = 'changes_id'; static public $itemtype_2 = 'Problem'; static public $items_id_2 = 'problems_id'; function getForbiddenStandardMassiveAction() { $forbidden = parent::getForbiddenStandardMassiveAction(); $forbidden[] = 'update'; return $forbidden; } static function getTypeName($nb = 0) { return _n('Link Problem/Change', 'Links Problem/Change', $nb); } function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) { if (static::canView()) { $nb = 0; switch ($item->getType()) { case 'Change' : if ($_SESSION['glpishow_count_on_tabs']) { $nb = countElementsInTable('glpi_changes_problems', ['changes_id' => $item->getID()]); } return self::createTabEntry(Problem::getTypeName(Session::getPluralNumber()), $nb); case 'Problem' : if ($_SESSION['glpishow_count_on_tabs']) { $nb = countElementsInTable('glpi_changes_problems', ['problems_id' => $item->getID()]); } return self::createTabEntry(Change::getTypeName(Session::getPluralNumber()), $nb); } } return ''; } static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) { switch ($item->getType()) { case 'Change' : self::showForChange($item); break; case 'Problem' : self::showForProblem($item); break; } return true; } /** * Show tickets for a problem * * @param $problem Problem object **/ static function showForProblem(Problem $problem) { global $DB; $ID = $problem->getField('id'); if (!$problem->can($ID, READ)) { return false; } $canedit = $problem->canEdit($ID); $rand = mt_rand(); $iterator = $DB->request([ 'SELECT' => [ 'glpi_changes_problems.id AS linkid', 'glpi_changes.*' ], 'DISTINCT' => true, 'FROM' => 'glpi_changes_problems', 'LEFT JOIN' => [ 'glpi_changes' => [ 'ON' => [ 'glpi_changes_problems' => 'changes_id', 'glpi_changes' => 'id' ] ] ], 'WHERE' => [ 'glpi_changes_problems.problems_id' => $ID ], 'ORDERBY' => 'glpi_changes.name' ]); $changes = []; $used = []; $numrows = count($iterator); while ($data = $iterator->next()) { $changes[$data['id']] = $data; $used[$data['id']] = $data['id']; } if ($canedit) { echo "
"; echo "
"; echo ""; echo ""; echo "
".__('Add a change')."
"; echo ""; Change::dropdown([ 'used' => $used, 'entity' => $problem->getEntityID(), 'entity_sons' => $problem->isRecursive(), 'condition' => Change::getOpenCriteria(), ]); echo ""; echo ""; echo ""; if (Session::haveRight('change', CREATE)) { echo ""; echo __('Create a change from this problem'); echo ""; } echo "
"; Html::closeForm(); echo "
"; } echo "
"; if ($canedit && $numrows) { Html::openMassiveActionsForm('mass'.__CLASS__.$rand); $massiveactionparams = ['num_displayed' => min($_SESSION['glpilist_limit'], $numrows), 'container' => 'mass'.__CLASS__.$rand]; Html::showMassiveActions($massiveactionparams); } echo ""; echo ""; echo ""; if ($numrows) { Change::commonListHeader(Search::HTML_OUTPUT, 'mass'.__CLASS__.$rand); Session::initNavigateListItems('Change', //TRANS : %1$s is the itemtype name, // %2$s is the name of the item (used for headings of a list) sprintf(__('%1$s = %2$s'), Problem::getTypeName(1), $problem->fields["name"])); $i = 0; foreach ($changes as $data) { Session::addToNavigateListItems('Change', $data["id"]); Change::showShort($data['id'], ['row_num' => $i, 'type_for_massiveaction' => __CLASS__, 'id_for_massiveaction' => $data['linkid']]); $i++; } Change::commonListHeader(Search::HTML_OUTPUT, 'mass'.__CLASS__.$rand); } echo "
".Change::getTypeName($numrows)."
"; if ($canedit && $numrows) { $massiveactionparams['ontop'] = false; Html::showMassiveActions($massiveactionparams); Html::closeForm(); } echo "
"; } /** * Show problems for a change * * @param $change Change object **/ static function showForChange(Change $change) { global $DB; $ID = $change->getField('id'); if (!$change->can($ID, READ)) { return false; } $canedit = $change->canEdit($ID); $rand = mt_rand(); $iterator = $DB->request([ 'SELECT' => [ 'glpi_changes_problems.id AS linkid', 'glpi_problems.*' ], 'DISTINCT' => true, 'FROM' => 'glpi_changes_problems', 'LEFT JOIN' => [ 'glpi_problems' => [ 'ON' => [ 'glpi_changes_problems' => 'problems_id', 'glpi_problems' => 'id' ] ] ], 'WHERE' => [ 'glpi_changes_problems.changes_id' => $ID ], 'ORDERBY' => 'glpi_problems.name' ]); $problems = []; $used = []; $numrows = count($iterator); while ($data = $iterator->next()) { $problems[$data['id']] = $data; $used[$data['id']] = $data['id']; } if ($canedit) { echo "
"; echo ""; echo ""; echo ""; echo "
".__('Add a problem')."
"; echo ""; Problem::dropdown([ 'used' => $used, 'entity' => $change->getEntityID(), 'condition' => Problem::getOpenCriteria() ]); echo ""; echo ""; echo "
"; Html::closeForm(); echo "
"; } echo "
"; if ($canedit && $numrows) { Html::openMassiveActionsForm('mass'.__CLASS__.$rand); $massiveactionparams = ['num_displayed' => min($_SESSION['glpilist_limit'], $numrows), 'container' => 'mass'.__CLASS__.$rand]; Html::showMassiveActions($massiveactionparams); } echo ""; echo ""; echo ""; if ($numrows) { Problem::commonListHeader(Search::HTML_OUTPUT, 'mass'.__CLASS__.$rand); Session::initNavigateListItems('Problem', //TRANS : %1$s is the itemtype name, // %2$s is the name of the item (used for headings of a list) sprintf(__('%1$s = %2$s'), Change::getTypeName(1), $change->fields["name"])); $i = 0; foreach ($problems as $data) { Session::addToNavigateListItems('Problem', $data["id"]); Problem::showShort($data['id'], ['row_num' => $i, 'type_for_massiveaction' => __CLASS__, 'id_for_massiveaction' => $data['linkid']]); $i++; } Problem::commonListHeader(Search::HTML_OUTPUT, 'mass'.__CLASS__.$rand); } echo "
".Problem::getTypeName($numrows)."
"; if ($canedit && $numrows) { $massiveactionparams['ontop'] = false; Html::showMassiveActions($massiveactionparams); Html::closeForm(); } echo "
"; } }