%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 1.1
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
/**
* @var \DebugKit\View\AjaxView $this
* @var \DebugKit\Model\Entity\Panel $panel
* @var array $requests
*/
?>
<div id="request-history">
<?php if (empty($requests)): ?>
<p class="warning"><?= __d('debug_kit', 'No previous requests logged.') ?></p>
<?php else: ?>
<p><?= count($requests) ?> <?= __d('debug_kit', 'previous requests available') ?></p>
<ul class="history-list">
<li>
<?= $this->Html->link(
__d('debug_kit', 'Back to current request'),
['plugin' => 'DebugKit', 'controller' => 'Panels', 'action' => 'index', $panel->request_id],
['class' => 'history-link', 'data-request' => $panel->request_id]
) ?>
</li>
<?php foreach ($requests as $request): ?>
<?php $url = ['plugin' => 'DebugKit', 'controller' => 'Panels', 'action' => 'index', $request->id] ?>
<li>
<a class="history-link" data-request="<?= $request->id ?>" href="<?= $this->Url->build($url) ?>">
<span class="history-time"><?= h($request->requested_at) ?></span>
<span class="history-bubble"><?= h($request->method) ?></span>
<span class="history-bubble"><?= h($request->status_code) ?></span>
<span class="history-bubble"><?= h($request->content_type) ?></span>
<span class="history-url"><?= h($request->url) ?></span>
</a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
<script type="text/html" id="list-template">
<ul class="history-list">
<li>
<?= $this->Html->link(
__d('debug_kit', 'Back to current request'),
['plugin' => 'DebugKit', 'controller' => 'Panels', 'action' => 'index', $panel->request_id],
['class' => 'history-link', 'data-request' => $panel->request_id]
) ?>
</li>
</ul>
</script>
<script type="text/html" id="list-item-template">
<li>
<?php $url = ['plugin' => 'DebugKit', 'controller' => 'Panels', 'action' => 'index'] ?>
<a class="history-link" data-request="{id}" href="<?= $this->Url->build($url) ?>/{id}">
<span class="history-time">{time}</span>
<span class="history-bubble xhr">XHR</span>
<span class="history-bubble">{method}</span>
<span class="history-bubble">{status}</span>
<span class="history-bubble">{type}</span>
<span class="history-url">{url}</span>
</a>
</li>
</script>
<script>
$(document).ready(function() {
var panelButtons = $('.panel');
var thisPanel = '<?= h($panel->id) ?>';
var toolbar = window.toolbar;
if (!$('#request-history > ul').length) {
$('#request-history').html($('#list-template').html());
}
var listItem = $('#list-item-template').html();
for (var i = 0; i < toolbar.ajaxRequests.length; i++) {
var params = {
id: toolbar.ajaxRequests[i].requestId,
time: (new Date(toolbar.ajaxRequests[i].date)).toLocaleString(),
method: toolbar.ajaxRequests[i].method,
status: toolbar.ajaxRequests[i].status,
url: toolbar.ajaxRequests[i].url,
type: toolbar.ajaxRequests[i].type
};
var content = listItem.replace(/{([^{}]*)}/g, function(a, b) {
var r = params[b];
return typeof r === 'string' || typeof r === 'number' ? r : a;
});
$('ul.history-list li:first').after(content);
}
var buttons = $('.history-link');
// Highlight the active request.
buttons.filter('[data-request=' + window.toolbar.currentRequest + ']').addClass('active');
buttons.on('click', function(e) {
var el = $(this);
e.preventDefault();
buttons.removeClass('active');
el.addClass('active');
window.toolbar.currentRequest = el.data('request');
$.getJSON(el.attr('href'), function(response) {
if (response.panels[0].request_id == window.toolbar.originalRequest) {
$('#panel-content-container').removeClass('history-mode');
$('#toolbar').removeClass('history-mode');
} else {
$('#panel-content-container').addClass('history-mode');
$('#toolbar').addClass('history-mode');
}
for (var i = 0, len = response.panels.length; i < len; i++) {
var panel = response.panels[i];
// Offset by two for scroll buttons
var button = panelButtons.eq(i + 2);
var summary = button.find('.panel-summary');
// Don't overwrite the history panel.
if (button.data('id') == thisPanel) {
continue;
}
button.attr('data-id', panel.id);
summary.text(panel.summary);
}
});
});
});
</script>