示例#1
0
文件: budget.php 项目: gaforeror/glpi
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("budget", "r");
Html::header(Budget::getTypeName(1), $_SERVER['PHP_SELF'], "financial", "budget");
Search::show('Budget');
Html::footer();
示例#2
0
            }
            $budget->redirectToList();
        } else {
            if (isset($_POST["purge"])) {
                $budget->check($_POST["id"], PURGE);
                if ($budget->delete($_POST, 1)) {
                    Event::log($_POST["id"], "budget", 4, "financial", sprintf(__('%s purges an item'), $_SESSION["glpiname"]));
                }
                $budget->redirectToList();
            } else {
                if (isset($_POST["update"])) {
                    $budget->check($_POST["id"], UPDATE);
                    if ($budget->update($_POST)) {
                        Event::log($_POST["id"], "budget", 4, "financial", sprintf(__('%s updates an item'), $_SESSION["glpiname"]));
                    }
                    Html::back();
                } else {
                    if (isset($_GET['_in_modal'])) {
                        Html::popHeader(Budget::getTypeName(1), $_SERVER['PHP_SELF']);
                        $budget->showForm($_GET["id"], array('withtemplate' => $_GET["withtemplate"]));
                        Html::popFooter();
                    } else {
                        Html::header(Budget::getTypeName(1), $_SERVER['PHP_SELF'], "management", "budget");
                        $budget->display(array('id' => $_GET["id"], 'withtemplate' => $_GET["withtemplate"]));
                        Html::footer();
                    }
                }
            }
        }
    }
}