Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
b55e5169
Commit
b55e5169
authored
Aug 01, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adjusted comments in route loader.
parent
f9f168ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
loader.php
system/routing/loader.php
+2
-3
No files found.
system/routing/loader.php
View file @
b55e5169
...
@@ -25,9 +25,6 @@ class Loader {
...
@@ -25,9 +25,6 @@ class Loader {
/**
/**
* Load the appropriate routes from the routes directory.
* Load the appropriate routes from the routes directory.
*
*
* This is done by working down the URI until we find the deepest
* possible matching route file.
*
* @param string $uri
* @param string $uri
* @return array
* @return array
*/
*/
...
@@ -35,6 +32,8 @@ class Loader {
...
@@ -35,6 +32,8 @@ class Loader {
{
{
$segments
=
explode
(
'/'
,
$uri
);
$segments
=
explode
(
'/'
,
$uri
);
// Work backwards through the URI segments until we find the deepest possible
// matching route file in the routes directory.
foreach
(
array_reverse
(
$segments
,
true
)
as
$key
=>
$value
)
foreach
(
array_reverse
(
$segments
,
true
)
as
$key
=>
$value
)
{
{
if
(
file_exists
(
$path
=
ROUTE_PATH
.
implode
(
'/'
,
array_slice
(
$segments
,
0
,
$key
+
1
))
.
EXT
))
if
(
file_exists
(
$path
=
ROUTE_PATH
.
implode
(
'/'
,
array_slice
(
$segments
,
0
,
$key
+
1
))
.
EXT
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment