Files
Roman Pyrih 7483681901 first commit
2026-04-21 15:48:41 +02:00

37 lines
1.3 KiB
PHP

<?php
defined("ABSPATH") or die("");
/**
* Dialog Confirm Progress Template
*
* Variables
*
* @var array<string, mixed> $tplData
* @var string $function_name
* @var string $progress_text
*/
$id = $tplData["id"];
$function_name = $tplData["function_name"];
$progress_text = $tplData["progress_text"];
?>
<div class='dupli-dlg-confirm-progress' id="<?php echo esc_attr($id) ?>-progress">
<br/><br/>
<i class='fa fa-circle-notch fa-spin fa-lg fa-fw'></i> <?php echo esc_html($progress_text) ?></div>
<script>
function <?php echo esc_js($function_name) ?>(obj)
{
(function($,obj){
console.log($('#<?php echo esc_attr($id) ?>'));
// Set object for reuse
var e = $(obj);
// Check and set progress
if($('#<?php echo esc_attr($id) ?>-progress')) $('#<?php echo esc_attr($id) ?>-progress').show();
// Check and set confirm button
if($('#<?php echo esc_attr($id) ?>-confirm')) $('#<?php echo esc_attr($id) ?>-confirm').attr('disabled', 'true');
// Check and set cancel button
if($('#<?php echo esc_attr($id) ?>-cancel')) $('#<?php echo esc_attr($id) ?>-cancel').attr('disabled', 'true');
}(window.jQuery, obj));
}
</script>