Skip to content

Commit

Permalink
Merge pull request #5 from bacus99/1.0.6
Browse files Browse the repository at this point in the history
1.0.6
  • Loading branch information
bacus99 committed Mar 13, 2017
2 parents 642915e + 01531c1 commit 6c25f12
Show file tree
Hide file tree
Showing 16 changed files with 461 additions and 574 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# Services
GLPI ITIL Services project

The goal of this plugin is to associate servers, devices, printers, ... to a specific service based on ITIL concepts.

This include
- TCO association for costs redistributions between entities
- Information related to disaster recovery (date, plan, doc, ...)
- Ownership of service within an enterprise
6 changes: 3 additions & 3 deletions ajax/dropdownTypeServices.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
-------------------------------------------------------------------------
LICENSE
This file is part of Services.
Services is free software; you can redistribute it and/or modify
Expand All @@ -32,8 +32,8 @@
header("Content-Type: text/html; charset=UTF-8");
Html::header_nocache();
}

Session::checkCentralAccess();
Session::checkLoginUser();
//Session::checkCentralAccess();

// Make a select box
if (isset($_POST["servicetype"])) {
Expand Down
35 changes: 35 additions & 0 deletions front/serviceservertype.form.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?php
/*
* @version $Id: HEADER 15930 2011-10-30 15:47:55Z tsmr $
-------------------------------------------------------------------------
Services plugin for GLPI
Copyright (C) 2003-2011 by the Services Development Team.
https://forge.indepnet.net/projects/services
-------------------------------------------------------------------------
LICENSE
This file is part of Services.
Services 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.
Services 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 Services. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/

include ('../../../inc/includes.php');

$dropdown = new PluginServicesServiceServerType();
include (GLPI_ROOT . "/front/dropdown.common.form.php");

?>
35 changes: 35 additions & 0 deletions front/serviceservertype.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?php
/*
* @version $Id: HEADER 15930 2011-10-30 15:47:55Z tsmr $
-------------------------------------------------------------------------
Services plugin for GLPI
Copyright (C) 2003-2011 by the Services Development Team.
https://forge.indepnet.net/projects/services
-------------------------------------------------------------------------
LICENSE
This file is part of Services.
Services 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.
Services 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 Services. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/

include ('../../../inc/includes.php');

$dropdown = new PluginServicesServiceServerType();
include (GLPI_ROOT . "/front/dropdown.common.php");

?>
Loading

0 comments on commit 6c25f12

Please sign in to comment.