Skip to content

Commit

Permalink
feat: reminders
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknoweb authored and btry committed Apr 12, 2023
1 parent ba97c84 commit 6ed85cd
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 0 deletions.
60 changes: 60 additions & 0 deletions front/wizardreminders.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?php
/**
* ---------------------------------------------------------------------
* Formcreator is a plugin which allows creation of custom forms of
* easy access.
* ---------------------------------------------------------------------
* LICENSE
*
* This file is part of Formcreator.
*
* Formcreator 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.
*
* Formcreator 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 Formcreator. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------
* @copyright Copyright © 2011 - 2021 Teclib'
* @license http://www.gnu.org/licenses/gpl.txt GPLv3+
* @link https://github.com/pluginsGLPI/formcreator/
* @link https://pluginsglpi.github.io/formcreator/
* @link http://plugins.glpi-project.org/#/plugin/formcreator
* ---------------------------------------------------------------------
*/

global $CFG_GLPI;
include ("../../../inc/includes.php");

// Check if plugin is activated...
if (!(new Plugin())->isActivated('formcreator')) {
Html::displayNotFoundError();
}

if (! plugin_formcreator_replaceHelpdesk()) {
Html::redirect($CFG_GLPI['root_doc']."/front/helpdesk.public.php");
}

if (!Reminder::canView()) {
Html::displayRightError();
}

if (Session::getCurrentInterface() == "helpdesk") {
Html::helpHeader(__('Service catalog', 'formcreator'));
} else {
Html::header(__('Service catalog', 'formcreator'));
}

Reminder::showListForCentral(false);

if (Session::getCurrentInterface() == "helpdesk") {
Html::helpFooter();
} else {
Html::footer();
}
20 changes: 20 additions & 0 deletions inc/common.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -811,6 +811,26 @@ public static function hookRedefineMenu($menus) {
$newMenu['reservation'] = $menus['reservation'];
}
}
$reminderTable = Reminder::getTable();
$criteria = [
'SELECT' => "$reminderTable.*",
'DISTINCT' => true,
'FROM' => $reminderTable,
'ORDER' => "$reminderTable.name"
];
$criteria = $criteria + Reminder::getVisibilityCriteria();
$criteria['WHERE']["$reminderTable.users_id"] = ['<>', Session::getLoginUserID()];
$iterator = $DB->request($criteria);
$hasReminder = $iterator->count() > 0;

if (Reminder::canView() && $hasReminder) {
$newMenu['reminders'] = [
'default' => Plugin::getWebDir('formcreator', false) . '/front/wizardreminders.php',
'title' => __('Consult reminders', 'formcreator'),
'icon' => 'fa fa-sticky-note',
];
}

$rssFeedTable = RSSFeed::getTable();
$criteria = [
'SELECT' => "$rssFeedTable.*",
Expand Down

0 comments on commit 6ed85cd

Please sign in to comment.