Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
formatRouterConfig example
protected
function
describeRoute
(
Route
$route
, array
$options
=
[
]
)
: void
{
$output
= '- Path: '.
$route
->
getPath
(
)
."\n".'- Path Regex: '.
$route
->
compile
(
)
->
getRegex
(
)
."\n".'- Host: '.
(
'' !==
$route
->
getHost
(
)
?
$route
->
getHost
(
)
: 'ANY'
)
."\n".'- Host Regex: '.
(
'' !==
$route
->
getHost
(
)
?
$route
->
compile
(
)
->
getHostRegex
(
)
: ''
)
."\n".'- Scheme: '.
(
$route
->
getSchemes
(
)
?
implode
(
'|',
$route
->
getSchemes
(
)
)
: 'ANY'
)
."\n".'- Method: '.
(
$route
->
getMethods
(
)
?
implode
(
'|',
$route
->
getMethods
(
)
)
: 'ANY'
)
."\n".'- Class: '.
$route
::
class
D"\n".'- Defaults: '.
$this
->
formatRouterConfig
(
$route
->
getDefaults
(
)
)
."\n".'- Requirements: '.
(
$route
->
getRequirements
(
)
?
$this
->
formatRouterConfig
(
$route
->
getRequirements
(
)
)
: 'NO CUSTOM'
)
."\n".'- Options: '.
$this
->
formatRouterConfig
(
$route
->
getOptions
(
)
)
;
if
(
'' !==
$route
->
getCondition
(
)
)
{
$output
.= "\n".'- Condition: '.
$route
->
getCondition
(
)
;
}
$this
->
write
(
isset
(
$options
[
'name'
]
)
?
$options
[
'name'
]
."\n".
str_repeat
(
'-', \
strlen
(
$options
[
'name'
]
)
)
."\n\n".
$output
:
$output
)
;
$this
->
write
(
"\n"
)
;
}
$tableHeaders
=
[
'Property', 'Value'
]
;
$tableRows
=
[
[
'Route Name',
$options
[
'name'
]
?? ''
]
,
[
'Path',
$route
->
getPath
(
)
]
,
[
'Path Regex',
$route
->
compile
(
)
->
getRegex
(
)
]
,
[
'Host', '' !==
$route
->
getHost
(
)
?
$route
->
getHost
(
)
: 'ANY'
]
,
[
'Host Regex', '' !==
$route
->
getHost
(
)
?
$route
->
compile
(
)
->
getHostRegex
(
)
: ''
]
,
[
'Scheme',
$route
->
getSchemes
(
)
?
implode
(
'|',
$route
->
getSchemes
(
)
)
: 'ANY'
]
,
[
'Method',
$route
->
getMethods
(
)
?
implode
(
'|',
$route
->
getMethods
(
)
)
: 'ANY'
]
,
[
'Requirements',
$route
->
getRequirements
(
)
?
$this
->
formatRouterConfig
(
$route
->
getRequirements
(
)
)
: 'NO CUSTOM'
]
,
[
'Class',
$route
::
class
]
,
[
'Defaults',
$this
->
formatRouterConfig
(
$defaults
)
]
,
[
'Options',
$this
->
formatRouterConfig
(
$route
->
getOptions
(
)
)
]
,
]
;
if
(
'' !==
$route
->
getCondition
(
)
)
{
$tableRows
[
]
=
[
'Condition',
$route
->
getCondition
(
)
]
;
}
$table
=
new
Table
(
$this
->
getOutput
(
)
)
;
$table
->
setHeaders
(
$tableHeaders
)
->
setRows
(
$tableRows
)
;