%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
/**
* Request Panel Element
*
* PHP 5
*
* 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 $headers
* @var array $params
* @var array $data
* @var array $query
* @var array $cookie
* @var string $matchedRoute
*/
?>
<?php if (!empty($headers) && $headers['response']): ?>
<h4><?= __d('debug_kit', 'Warning') ?></h4>
<?= '<p class="warning">' . __d('debug_kit', 'Headers already sent at file {0} and line {1}.', [$headers['file'], $headers['line']]) . '</p>' ?>
<?php endif; ?>
<h4><?= __d('debug_kit', 'Routing Params') ?></h4>
<?= $this->Toolbar->makeNeatArray($params) ?>
<h4><?= __d('debug_kit', 'Post data') ?></h4>
<?php
if (empty($data)):
echo '<p class="info">' . __d('debug_kit', 'No post data.') . '</p>';
else:
echo $this->Toolbar->makeNeatArray($data);
endif;
?>
<h4>Query string</h4>
<?php
if (empty($query)):
echo '<p class="info">' . __d('debug_kit', 'No querystring data.') . '</p>';
else:
echo $this->Toolbar->makeNeatArray($query);
endif;
?>
<h4>Cookie</h4>
<?php if (isset($cookie)): ?>
<?= $this->Toolbar->makeNeatArray($cookie) ?>
<?php else: ?>
<p class="info"><?= __d('debug_kit', 'No Cookie data.') ?></p>
<?php endif; ?>
<?php if (!empty($matchedRoute)): ?>
<h4><?= __d('debug_kit', 'Matched Route') ?></h4>
<p><?= $this->Toolbar->makeNeatArray(['template' => $matchedRoute]) ?></p>
<?php endif; ?>