getTypeName() static public method

static public getTypeName ( $nb )
Exemplo n.º 1
0
Copyright (C) 2003-2013 by the INDEPNET Development Team.

http://indepnet.net/   http://glpi-project.org
-------------------------------------------------------------------------

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/>.
--------------------------------------------------------------------------
*/
/** @file
* @brief
*/
include '../inc/includes.php';
Session::checkRight("cartridge", "r");
Html::header(Cartridge::getTypeName(2), $_SERVER['PHP_SELF'], "inventory", "cartridge");
Search::show('CartridgeItem');
Html::footer();
        $cartype->redirectToList();
    } else {
        if (isset($_POST["restore"])) {
            $cartype->check($_POST["id"], PURGE);
            if ($cartype->restore($_POST)) {
                Event::log($_POST["id"], "cartridgeitems", 4, "inventory", sprintf(__('%s restores an item'), $_SESSION["glpiname"]));
            }
            $cartype->redirectToList();
        } else {
            if (isset($_POST["purge"])) {
                $cartype->check($_POST["id"], PURGE);
                if ($cartype->delete($_POST, 1)) {
                    Event::log($_POST["id"], "cartridgeitems", 4, "inventory", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
                }
                $cartype->redirectToList();
            } else {
                if (isset($_POST["update"])) {
                    $cartype->check($_POST["id"], UPDATE);
                    if ($cartype->update($_POST)) {
                        Event::log($_POST["id"], "cartridgeitems", 4, "inventory", sprintf(__('%s updates an item'), $_SESSION["glpiname"]));
                    }
                    Html::back();
                } else {
                    Html::header(Cartridge::getTypeName(Session::getPluralNumber()), $_SERVER['PHP_SELF'], "assets", "cartridgeitem");
                    $cartype->display(array('id' => $_GET["id"]));
                    Html::footer();
                }
            }
        }
    }
}
 /**
  * @see CommonGLPI::getMenuName()
  *
  * @since version 0.85
  **/
 static function getMenuName()
 {
     return Cartridge::getTypeName(Session::getPluralNumber());
 }