You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

60 lines
2.5 KiB

<?php
/**
* expand contract jquery script
*
* @package OpenEMR
* @link http://www.open-emr.org
* @author Ranganath Pathak <pathak@scrs1.org>
* @author Brady Miller <brady.g.miller@gmail.com>
* @copyright Copyright (c) 2018 Ranganath Pathak <pathak@scrs1.org>
* @copyright Copyright (c) 2018 Brady Miller <brady.g.miller@gmail.com>
* @license https://github.com/openemr/openemr/blob/master/LICENSE GNU General Public License 3
*/
// ensure that $user_settings_php_path, $arr_files_php variables are set in the script calling this script
use OpenEMR\Common\Csrf\CsrfUtils;
?>
$(function () {
$('.expand_contract').click(function() {
var elementTitle = $(this).prop('title');
var contractTitle = <?php echo xlj('Click to Contract and set to henceforth open in Centered mode'); ?>;
var expandTitle = <?php echo xlj('Click to Expand and set to henceforth open in Expanded mode'); ?>;
var arrFiles = <?php echo json_encode($arr_files_php) ?>;
if (elementTitle == contractTitle) {
elementTitle = expandTitle;
$(this).toggleClass('fa-expand fa-compress');
$('.expandable').toggleClass('container container-fluid');
if ($(arrFiles).length) {
$.each(arrFiles, function (index, value) {
$.post( "<?php echo $GLOBALS['webroot'] ?>/library/ajax/user_settings.php",
{
target: arrFiles[index].trim(),
setting: 0,
csrf_token_form: <?php echo js_escape(CsrfUtils::collectCsrfToken()); ?>
}
);
});
}
} else if (elementTitle == expandTitle) {
elementTitle = contractTitle;
$(this).toggleClass('fa-compress fa-expand');
$('.expandable').toggleClass('container-fluid container');
if ($(arrFiles).length) {
$.each(arrFiles, function (index, value) {
$.post( "<?php echo $GLOBALS['webroot'] ?>/library/ajax/user_settings.php",
{
target: arrFiles[index].trim(),
setting: 1,
csrf_token_form: <?php echo js_escape(CsrfUtils::collectCsrfToken()); ?>
}
);
});
}
}
$(this).prop('title', elementTitle);
});
});