|
|
@@ -9,16 +9,16 @@
|
|
|
*
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
|
|
- * @since 3.2.14
|
|
|
+ * @since 3.3.1
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
|
|
*/
|
|
|
|
|
|
-use Cake\Routing\Router;
|
|
|
use Cake\Error\Debugger;
|
|
|
+use Cake\Routing\Router;
|
|
|
|
|
|
$this->layout = 'dev_error';
|
|
|
|
|
|
-$this->assign('title', 'Duplicate Route');
|
|
|
+$this->assign('title', 'Duplicate Named Route');
|
|
|
$this->assign('templateName', 'duplicate_named_route.ctp');
|
|
|
|
|
|
$attributes = $error->getAttributes();
|
|
|
@@ -35,10 +35,10 @@ The same _name cannot be used twice,
|
|
|
even if the names occur inside a different routing scope.
|
|
|
remove duplicated route name in <?= 'config' . DIRECTORY_SEPARATOR . 'routes.php' ?></p>
|
|
|
|
|
|
-<?php if (!empty($attributes['context'])): ?>
|
|
|
+<?php if (!empty($attributes['context'])) : ?>
|
|
|
<p>The passed context was:</p>
|
|
|
<pre>
|
|
|
-<?= Debugger::exportVar($attributes['context']); ?>
|
|
|
+<?= Debugger::exportVar($attributes['context']); ?>
|
|
|
</pre>
|
|
|
<?php endif; ?>
|
|
|
|
|
|
@@ -46,16 +46,16 @@ remove duplicated route name in <?= 'config' . DIRECTORY_SEPARATOR . 'routes.php
|
|
|
<table cellspacing="0" cellpadding="0">
|
|
|
<tr><th>Template</th><th>Defaults</th><th>Options</th></tr>
|
|
|
<?php
|
|
|
-$url=false;
|
|
|
-if (!empty($attributes['url'])){
|
|
|
- $url=$attributes['url'];
|
|
|
+$url = false;
|
|
|
+if (!empty($attributes['url'])) {
|
|
|
+ $url = $attributes['url'];
|
|
|
}
|
|
|
-foreach (Router::routes() as $route):
|
|
|
- if(isset($route->options['_name']) && $url===$route->options['_name']){
|
|
|
- echo '<tr class="error">';
|
|
|
- }else{
|
|
|
- echo '<tr>';
|
|
|
- }
|
|
|
+foreach (Router::routes() as $route) :
|
|
|
+ if (isset($route->options['_name']) && $url === $route->options['_name']) :
|
|
|
+ echo '<tr class="error">';
|
|
|
+ else :
|
|
|
+ echo '<tr>';
|
|
|
+ endif;
|
|
|
printf(
|
|
|
'<td width="25%%">%s</td><td>%s</td><td width="20%%">%s</td>',
|
|
|
$route->template,
|