zoneminder/web/ajax/modal.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2020-09-11 05:56:58 +08:00
<?php
// HOW TO IMPLEMENT A NEW MODAL
// 1) Create a function in skins/classic/includes/functions that returns the desired modal HTML
// 2) Add a new entry to the switch case below that calls the new HTML function
// 3) Create a $j.getJSON Ajax call in js with the right parameters to retrieve the modal
// 4) Open the modal with $j('#myModal').modal('show')
//
if ( empty($_REQUEST['modal']) ) ajaxError('Modal Name Not Provided');
2020-09-11 20:51:00 +08:00
global $OLANG;
2020-09-11 05:56:58 +08:00
$modal = validJsStr($_REQUEST['modal']);
$data = array();
// Not sure if this is required
if ( ZM_OPT_USE_AUTH && (ZM_AUTH_RELAY == 'hashed') ) {
$auth_hash = generateAuthHash(ZM_AUTH_HASH_IPS);
if ( isset($_REQUEST['auth']) and ($_REQUEST['auth'] != $auth_hash) ) {
$data['auth'] = $auth_hash;
}
}
switch ( $modal ) {
case 'optionhelp' :
if ( empty($_REQUEST['ohndx']) ) ajaxError('Option Help Index Not Provided');
2020-09-11 20:51:00 +08:00
$data['html'] = getOptionHelpHTML($_REQUEST['ohndx'], $OLANG);
2020-09-11 05:56:58 +08:00
break;
2020-09-12 21:36:19 +08:00
case 'enoperm' :
$data['html'] = getENoPermHTML();
break;
2020-09-13 23:39:51 +08:00
case 'delconfirm' :
$data['html'] = getDelConfirmHTML();
break;
2020-09-11 05:56:58 +08:00
default :
// Maybe don't need both
ZM\Warning('Unknown modal '.$modal);
ajaxError("Unknown modal '".$modal."'");
return;
}
ajaxResponse($data);
return;
?>