Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
D
drupal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Custom Issue Tracker
Custom Issue Tracker
Labels
Merge Requests
304
Merge Requests
304
Requirements
Requirements
List
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Analytics
Analytics
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
project
drupal
Commits
2bf5b4d1
Commit
2bf5b4d1
authored
Sep 07, 2012
by
Crell
Committed by
effulgentsia
Oct 01, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wire the new PartialMatcher and PathMatcher into the routing configuration.
parent
ac10076c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
62 deletions
+0
-62
core/modules/system/system.install
core/modules/system/system.install
+0
-62
No files found.
core/modules/system/system.install
View file @
2bf5b4d1
...
...
@@ -1225,68 +1225,6 @@ function system_schema() {
),
);
$schema
[
'registry'
]
=
array
(
'description'
=>
"Each record is a function, class, or interface name and the file it is in."
,
'fields'
=>
array
(
'name'
=>
array
(
'description'
=>
'The name of the function, class, or interface.'
,
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
'default'
=>
''
,
),
'type'
=>
array
(
'description'
=>
'Either function or class or interface.'
,
'type'
=>
'varchar'
,
'length'
=>
9
,
'not null'
=>
TRUE
,
'default'
=>
''
,
),
'filename'
=>
array
(
'description'
=>
'Name of the file.'
,
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
),
'module'
=>
array
(
'description'
=>
'Name of the module the file belongs to.'
,
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
'default'
=>
''
),
'weight'
=>
array
(
'description'
=>
"The order in which this module's hooks should be invoked relative to other modules. Equal-weighted modules are ordered by name."
,
'type'
=>
'int'
,
'not null'
=>
TRUE
,
'default'
=>
0
,
),
),
'primary key'
=>
array
(
'name'
,
'type'
),
'indexes'
=>
array
(
'hook'
=>
array
(
'type'
,
'weight'
,
'module'
),
),
);
$schema
[
'registry_file'
]
=
array
(
'description'
=>
"Files parsed to build the registry."
,
'fields'
=>
array
(
'filename'
=>
array
(
'description'
=>
'Path to the file.'
,
'type'
=>
'varchar'
,
'length'
=>
255
,
'not null'
=>
TRUE
,
),
'hash'
=>
array
(
'description'
=>
"sha-256 hash of the file's contents when last parsed."
,
'type'
=>
'varchar'
,
'length'
=>
64
,
'not null'
=>
TRUE
,
),
),
'primary key'
=>
array
(
'filename'
),
);
$schema
[
'router'
]
=
array
(
'description'
=>
'Maps paths to various callbacks (access, page and title)'
,
'fields'
=>
array
(
...
...
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