%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/vendor/cakephp/debug_kit/src/Template/Element/ |
Upload File : |
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since DebugKit 0.1
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
/**
* @var \DebugKit\View\AjaxView $this
* @var array $metrics
*/
?>
<?php if (empty($metrics)): ?>
<p class="info"><?= __d('debug_kit', 'There were no cache operations this request.') ?></p>
<?php else: ?>
<?php foreach ($metrics as $name => $counters): ?>
<section class="section-tile">
<h3><?= __d('debug_kit', '{0} Metrics', h($name)) ?> </h3>
<button class="btn-primary clear-cache" data-name="<?= h($name) ?>"><?= __d('debug_kit', 'Clear {0} cache', h($name)) ?></button>
<span class="inline-message"></span>
<table cellspacing="0" cellpadding="0" class="debug-table">
<thead>
<tr>
<th><?= __d('debug_kit', 'Metric') ?></th>
<th><?= __d('debug_kit', 'Total') ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($counters as $key => $val): ?>
<tr>
<td><?= h($key) ?></td>
<td class="right-text"><?= $val ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</section>
<?php endforeach; ?>
<?php endif; ?>
<script>
$(document).ready(function() {
var baseUrl = '<?= $this->Url->build([
'plugin' => 'DebugKit',
'controller' => 'Toolbar',
'action' => 'clearCache'
]); ?>';
function showMessage(el, text) {
el.show().text(text).fadeOut(2000);
}
$('.clear-cache').on('click', function(e) {
var el = $(this);
var name = el.data('name');
var messageEl = el.parent().find('.inline-message');
var xhr = $.ajax({
url: baseUrl,
data: {name: name},
dataType: 'json',
type: 'POST'
});
xhr.done(function(response) {
showMessage(messageEl, name + ' ' + '<?= __d('debug_kit', 'cache cleared.') ?>');
}).error(function(response) {
showMessage(messageEl, name + ' ' + '<?= __d('debug_kit', 'cache could not be cleared.') ?>');
});
e.preventDefault();
});
});
</script>