示例#1
0
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 Search engine from cron tasks
*/
include '../inc/includes.php';
Session::checkRight("config", "w");
Html::header(Crontask::getTypeName(2), $_SERVER['PHP_SELF'], 'config', 'crontask');
$crontask = new CronTask();
if ($crontask->getNeedToRun(CronTask::MODE_INTERNAL)) {
    $name = sprintf(__('%1$s %2$s'), $crontask->fields['name'], Html::getSimpleForm($crontask->getFormURL(), array('execute' => $crontask->fields['name']), __('Execute')));
    Html::displayTitle($CFG_GLPI['root_doc'] . '/pics/warning.png', __('Next run'), sprintf(__('Next task to run: %s'), $name));
} else {
    Html::displayTitle($CFG_GLPI['root_doc'] . '/pics/ok.png', __('No action pending'), __('No action pending'));
}
Search::show('CronTask');
Html::footer();
示例#2
0
    Html::back();
} else {
    if (isset($_POST["update"])) {
        Session::checkRight('config', UPDATE);
        $crontask->update($_POST);
        Html::back();
    } else {
        if (isset($_POST['resetdate']) && isset($_POST["id"])) {
            Session::checkRight('config', UPDATE);
            if ($crontask->getFromDB($_POST["id"])) {
                $crontask->resetDate();
            }
            Html::back();
        } else {
            if (isset($_POST['resetstate']) && isset($_POST["id"])) {
                Session::checkRight('config', UPDATE);
                if ($crontask->getFromDB($_POST["id"])) {
                    $crontask->resetState();
                }
                Html::back();
            } else {
                if (!isset($_GET["id"]) || empty($_GET["id"])) {
                    exit;
                }
                Html::header(Crontask::getTypeName(Session::getPluralNumber()), $_SERVER['PHP_SELF'], 'config', 'crontask');
                $crontask->display(array('id' => $_GET["id"]));
                Html::footer();
            }
        }
    }
}