Blame view

src/Template/Error/error400.default.ctp 993 Bytes
771aa727   Alexandre   Version: 2.3.2.0
1
2
3
4
5
6
<?php
use Cake\Core\Configure;
use Cake\Error\Debugger;

$this->layout = 'error';

63c3cb16   epallier   Nombreux petits b...
7
if (Configure::read('debug')) :
771aa727   Alexandre   Version: 2.3.2.0
8
    $this->layout = 'dev_error';
63c3cb16   epallier   Nombreux petits b...
9
    
771aa727   Alexandre   Version: 2.3.2.0
10
11
    $this->assign('title', $message);
    $this->assign('templateName', 'error400.ctp');
63c3cb16   epallier   Nombreux petits b...
12
    
771aa727   Alexandre   Version: 2.3.2.0
13
    $this->start('file');
63c3cb16   epallier   Nombreux petits b...
14
    ?>
a0fefb3d   Thibaud Ajas   bugfixes suite au...
15
<?php if (!empty($error->getQueryString)) : ?>
63c3cb16   epallier   Nombreux petits b...
16
17
<p class="notice">
	<strong>SQL Query: </strong>
a0fefb3d   Thibaud Ajas   bugfixes suite au...
18
        <?= h($error->getQueryString) ?>
771aa727   Alexandre   Version: 2.3.2.0
19
20
    </p>
<?php endif; ?>
a0fefb3d   Thibaud Ajas   bugfixes suite au...
21
<?php if (!empty($error->getAttribute('params'))) : ?>
63c3cb16   epallier   Nombreux petits b...
22
23
<strong>SQL Query Params: </strong>
<?php Debugger::dump($error->getAttribute('params')) ?>
771aa727   Alexandre   Version: 2.3.2.0
24
25
26
<?php endif; ?>
<?= $this->element('auto_table_warning') ?>
<?php
63c3cb16   epallier   Nombreux petits b...
27
    if (extension_loaded('xdebug')) :
771aa727   Alexandre   Version: 2.3.2.0
28
29
        xdebug_print_function_stack();
    endif;
63c3cb16   epallier   Nombreux petits b...
30
    
771aa727   Alexandre   Version: 2.3.2.0
31
32
    $this->end();
endif;
63c3cb16   epallier   Nombreux petits b...
33

771aa727   Alexandre   Version: 2.3.2.0
34
35
36
?>
<h2><?= h($message) ?></h2>
<p class="error">
63c3cb16   epallier   Nombreux petits b...
37
38
	<strong><?= __d('cake', 'Error') ?>: </strong>
    <?=sprintf(__d('cake', 'The requested address %s was not found on this server.'), "<strong>'{$url}'</strong>")?>
771aa727   Alexandre   Version: 2.3.2.0
39
</p>