Adds the new messages system to all pages

main
Yasen Pramatarov 2025-01-13 10:45:31 +02:00
parent f1c63de8c0
commit da4a35d506
10 changed files with 40 additions and 0 deletions

View File

@ -8,6 +8,10 @@
* to allow time-based invalidation if needed. * to allow time-based invalidation if needed.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
$action = $_REQUEST['action'] ?? ''; $action = $_REQUEST['action'] ?? '';
$agent = $_REQUEST['agent'] ?? ''; $agent = $_REQUEST['agent'] ?? '';
require '../app/classes/agent.php'; require '../app/classes/agent.php';

View File

@ -8,6 +8,10 @@
* Supports pagination. * Supports pagination.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
require '../app/classes/component.php'; require '../app/classes/component.php';
// connect to database // connect to database

View File

@ -8,6 +8,10 @@
* Supports pagination. * Supports pagination.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
require '../app/classes/conference.php'; require '../app/classes/conference.php';
// connect to database // connect to database

View File

@ -7,6 +7,10 @@
* hosts, agents, and the configuration file itself. * hosts, agents, and the configuration file itself.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
$action = $_REQUEST['action'] ?? ''; $action = $_REQUEST['action'] ?? '';
$agent = $_REQUEST['agent'] ?? ''; $agent = $_REQUEST['agent'] ?? '';
$host = $_REQUEST['host'] ?? ''; $host = $_REQUEST['host'] ?? '';

View File

@ -1,5 +1,9 @@
<?php <?php
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
$action = $_REQUEST['action'] ?? ''; $action = $_REQUEST['action'] ?? '';
$agent = $_REQUEST['agent'] ?? ''; $agent = $_REQUEST['agent'] ?? '';

View File

@ -1,5 +1,9 @@
<?php <?php
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
include '../app/templates/help-main.php'; include '../app/templates/help-main.php';
?> ?>

View File

@ -7,6 +7,10 @@
* It supports pagination and filtering, and generates a widget to display the logs. * It supports pagination and filtering, and generates a widget to display the logs.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
// Check for rights; user or system // Check for rights; user or system
if (($userObject->hasRight($user_id, 'superuser') || if (($userObject->hasRight($user_id, 'superuser') ||
$userObject->hasRight($user_id, 'view app logs'))) { $userObject->hasRight($user_id, 'view app logs'))) {

View File

@ -8,6 +8,10 @@
* Supports pagination. * Supports pagination.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
require '../app/classes/participant.php'; require '../app/classes/participant.php';
// connect to database // connect to database

View File

@ -12,6 +12,10 @@
* - `edit`: Edit user profile details, rights, or avatar. * - `edit`: Edit user profile details, rights, or avatar.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
$action = $_REQUEST['action'] ?? ''; $action = $_REQUEST['action'] ?? '';
// if a form is submitted, it's from the edit page // if a form is submitted, it's from the edit page

View File

@ -8,6 +8,10 @@
* It generates output for each platform and agent. * It generates output for each platform and agent.
*/ */
// Get any new messages
include '../app/includes/messages.php';
include '../app/includes/messages-show.php';
require '../app/classes/agent.php'; require '../app/classes/agent.php';
$agentObject = new Agent($dbWeb); $agentObject = new Agent($dbWeb);