Save new folder
This commit is contained in:
264
inc/item_project.class.php
Normal file
264
inc/item_project.class.php
Normal file
@ -0,0 +1,264 @@
|
||||
<?php
|
||||
/**
|
||||
* ---------------------------------------------------------------------
|
||||
* GLPI - Gestionnaire Libre de Parc Informatique
|
||||
* Copyright (C) 2015-2020 Teclib' and contributors.
|
||||
*
|
||||
* http://glpi-project.org
|
||||
*
|
||||
* based on GLPI - Gestionnaire Libre de Parc Informatique
|
||||
* Copyright (C) 2003-2014 by the INDEPNET Development Team.
|
||||
*
|
||||
* ---------------------------------------------------------------------
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This file is part of GLPI.
|
||||
*
|
||||
* GLPI is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* GLPI is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with GLPI. If not, see <http://www.gnu.org/licenses/>.
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
if (!defined('GLPI_ROOT')) {
|
||||
die("Sorry. You can't access this file directly");
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Item_Project Class
|
||||
*
|
||||
* Relation between Projects and Items
|
||||
*
|
||||
* @since 0.85
|
||||
**/
|
||||
class Item_Project extends CommonDBRelation{
|
||||
|
||||
|
||||
// From CommonDBRelation
|
||||
static public $itemtype_1 = 'Project';
|
||||
static public $items_id_1 = 'projects_id';
|
||||
|
||||
static public $itemtype_2 = 'itemtype';
|
||||
static public $items_id_2 = 'items_id';
|
||||
static public $checkItem_2_Rights = self::HAVE_VIEW_RIGHT_ON_ITEM;
|
||||
|
||||
|
||||
|
||||
function getForbiddenStandardMassiveAction() {
|
||||
|
||||
$forbidden = parent::getForbiddenStandardMassiveAction();
|
||||
$forbidden[] = 'update';
|
||||
return $forbidden;
|
||||
}
|
||||
|
||||
|
||||
function prepareInputForAdd($input) {
|
||||
|
||||
// Avoid duplicate entry
|
||||
if (countElementsInTable($this->getTable(), ['projects_id' => $input['projects_id'],
|
||||
'itemtype' => $input['itemtype'],
|
||||
'items_id' => $input['items_id']]) > 0) {
|
||||
return false;
|
||||
}
|
||||
return parent::prepareInputForAdd($input);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Print the HTML array for Items linked to a project
|
||||
*
|
||||
* @param $project Project object
|
||||
*
|
||||
* @return void
|
||||
**/
|
||||
static function showForProject(Project $project) {
|
||||
global $CFG_GLPI;
|
||||
|
||||
$instID = $project->fields['id'];
|
||||
|
||||
if (!$project->can($instID, READ)) {
|
||||
return false;
|
||||
}
|
||||
$canedit = $project->canEdit($instID);
|
||||
$rand = mt_rand();
|
||||
|
||||
$types_iterator = self::getDistinctTypes($instID);
|
||||
$number = count($types_iterator);
|
||||
|
||||
if ($canedit) {
|
||||
echo "<div class='firstbloc'>";
|
||||
echo "<form name='projectitem_form$rand' id='projectitem_form$rand' method='post'
|
||||
action='".Toolbox::getItemTypeFormURL(__CLASS__)."'>";
|
||||
|
||||
echo "<table class='tab_cadre_fixe'>";
|
||||
echo "<tr class='tab_bg_2'><th colspan='2'>".__('Add an item')."</th></tr>";
|
||||
|
||||
echo "<tr class='tab_bg_1'><td>";
|
||||
Dropdown::showSelectItemFromItemtypes(['itemtypes'
|
||||
=> $CFG_GLPI["project_asset_types"],
|
||||
'entity_restrict'
|
||||
=> ($project->fields['is_recursive']
|
||||
?getSonsOf('glpi_entities',
|
||||
$project->fields['entities_id'])
|
||||
:$project->fields['entities_id'])]);
|
||||
echo "</td><td class='center' width='30%'>";
|
||||
echo "<input type='submit' name='add' value=\""._sx('button', 'Add')."\" class='submit'>";
|
||||
echo "<input type='hidden' name='projects_id' value='$instID'>";
|
||||
echo "</td></tr>";
|
||||
echo "</table>";
|
||||
Html::closeForm();
|
||||
echo "</div>";
|
||||
}
|
||||
|
||||
echo "<div class='spaced'>";
|
||||
if ($canedit && $number) {
|
||||
Html::openMassiveActionsForm('mass'.__CLASS__.$rand);
|
||||
$massiveactionparams = ['container' => 'mass'.__CLASS__.$rand];
|
||||
Html::showMassiveActions($massiveactionparams);
|
||||
}
|
||||
echo "<table class='tab_cadre_fixe'>";
|
||||
$header_begin = "<tr>";
|
||||
$header_top = '';
|
||||
$header_bottom = '';
|
||||
$header_end = '';
|
||||
if ($canedit && $number) {
|
||||
$header_top .= "<th width='10'>".Html::getCheckAllAsCheckbox('mass'.__CLASS__.$rand);
|
||||
$header_top .= "</th>";
|
||||
$header_bottom .= "<th width='10'>".Html::getCheckAllAsCheckbox('mass'.__CLASS__.$rand);
|
||||
$header_bottom .= "</th>";
|
||||
}
|
||||
$header_end .= "<th>"._n('Type', 'Types', 1)."</th>";
|
||||
$header_end .= "<th>".Entity::getTypeName(1)."</th>";
|
||||
$header_end .= "<th>".__('Name')."</th>";
|
||||
$header_end .= "<th>".__('Serial number')."</th>";
|
||||
$header_end .= "<th>".__('Inventory number')."</th></tr>";
|
||||
echo $header_begin.$header_top.$header_end;
|
||||
|
||||
$totalnb = 0;
|
||||
while ($row = $types_iterator->next()) {
|
||||
$itemtype = $row['itemtype'];
|
||||
if (!($item = getItemForItemtype($itemtype))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($item->canView()) {
|
||||
$iterator = self::getTypeItems($instID, $itemtype);
|
||||
$nb = count($iterator);
|
||||
|
||||
$prem = true;
|
||||
while ($data = $iterator->next()) {
|
||||
$name = $data[$itemtype::getNameField()];
|
||||
if ($_SESSION["glpiis_ids_visible"]
|
||||
|| empty($data[$itemtype::getNameField()])) {
|
||||
$name = sprintf(__('%1$s (%2$s)'), $name, $data["id"]);
|
||||
}
|
||||
$link = $item::getFormURLWithID($data['id']);
|
||||
$namelink = "<a href=\"".$link."\">".$name."</a>";
|
||||
|
||||
echo "<tr class='tab_bg_1'>";
|
||||
if ($canedit) {
|
||||
echo "<td width='10'>";
|
||||
Html::showMassiveActionCheckBox(__CLASS__, $data["linkid"]);
|
||||
echo "</td>";
|
||||
}
|
||||
if ($prem) {
|
||||
$typename = $item->getTypeName($nb);
|
||||
echo "<td class='center top' rowspan='$nb'>".
|
||||
(($nb > 1) ? sprintf(__('%1$s: %2$s'), $typename, $nb) : $typename)."</td>";
|
||||
$prem = false;
|
||||
}
|
||||
echo "<td class='center'>";
|
||||
echo Dropdown::getDropdownName("glpi_entities", $data['entity'])."</td>";
|
||||
echo "<td class='center".
|
||||
(isset($data['is_deleted']) && $data['is_deleted'] ? " tab_bg_2_2'" : "'");
|
||||
echo ">".$namelink."</td>";
|
||||
echo "<td class='center'>".(isset($data["serial"])? "".$data["serial"]."" :"-").
|
||||
"</td>";
|
||||
echo "<td class='center'>".
|
||||
(isset($data["otherserial"])? "".$data["otherserial"]."" :"-")."</td>";
|
||||
echo "</tr>";
|
||||
}
|
||||
$totalnb += $nb;
|
||||
}
|
||||
}
|
||||
if ($totalnb > 0) {
|
||||
echo "<tr class='tab_bg_2'>";
|
||||
echo "<td class='center' colspan='2'>".
|
||||
(($totalnb > 0) ? sprintf(__('%1$s = %2$s'), __('Total'), $totalnb) :" ");
|
||||
echo "</td><td colspan='4'> </td></tr> ";
|
||||
}
|
||||
echo "</table>";
|
||||
if ($canedit && $number) {
|
||||
$massiveactionparams['ontop'] = false;
|
||||
Html::showMassiveActions($massiveactionparams);
|
||||
Html::closeForm();
|
||||
}
|
||||
echo "</div>";
|
||||
}
|
||||
|
||||
|
||||
function getTabNameForItem(CommonGLPI $item, $withtemplate = 0) {
|
||||
|
||||
if (!$withtemplate) {
|
||||
$nb = 0;
|
||||
switch ($item->getType()) {
|
||||
case 'Project' :
|
||||
if ($_SESSION['glpishow_count_on_tabs']) {
|
||||
$nb = self::countForMainItem($item);
|
||||
}
|
||||
return self::createTabEntry(_n('Item', 'Items', Session::getPluralNumber()), $nb);
|
||||
|
||||
default :
|
||||
// Not used now
|
||||
if (Session::haveRight("project", Project::READALL)) {
|
||||
if ($_SESSION['glpishow_count_on_tabs']) {
|
||||
// Direct one
|
||||
$nb = self::countForItem($item);
|
||||
|
||||
// Linked items
|
||||
$linkeditems = $item->getLinkedItems();
|
||||
|
||||
if (count($linkeditems)) {
|
||||
foreach ($linkeditems as $type => $tab) {
|
||||
$typeitem = new $type;
|
||||
foreach ($tab as $ID) {
|
||||
$typeitem->getFromDB($ID);
|
||||
$nb += self::countForItem($typeitem);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return self::createTabEntry(Project::getTypeName(Session::getPluralNumber()), $nb);
|
||||
}
|
||||
}
|
||||
}
|
||||
return '';
|
||||
}
|
||||
|
||||
|
||||
static function displayTabContentForItem(CommonGLPI $item, $tabnum = 1, $withtemplate = 0) {
|
||||
|
||||
switch ($item->getType()) {
|
||||
case 'Project' :
|
||||
self::showForProject($item);
|
||||
break;
|
||||
|
||||
default :
|
||||
// Not defined and used now
|
||||
// Project::showListForItem($item);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user