Adds the new messages system to all pages
parent
f1c63de8c0
commit
da4a35d506
|
@ -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';
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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'] ?? '';
|
||||||
|
|
|
@ -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'] ?? '';
|
||||||
|
|
||||||
|
|
|
@ -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';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -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'))) {
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue