Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3443488
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3443488
Commits
729a23e1
Commit
729a23e1
authored
14 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#922788
by sun: update.php does not invoke hook_requirements()('update') in all modules.
parent
7aab0ab3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
modules/system/system.api.php
+17
-15
17 additions, 15 deletions
modules/system/system.api.php
update.php
+5
-2
5 additions, 2 deletions
update.php
with
22 additions
and
17 deletions
modules/system/system.api.php
+
17
−
15
View file @
729a23e1
...
...
@@ -2692,7 +2692,8 @@ function hook_file_url_alter(&$uri) {
}
}
}
/**
/**
* Check installation requirements and do status reporting.
*
* This hook has two closely related uses, determined by the $phase argument:
...
...
@@ -2726,24 +2727,25 @@ function hook_file_url_alter(&$uri) {
* result in a notice on the the administration overview page.
*
* @param $phase
* The phase in which hook_requirements is run:
* - 'install': the module is being installed.
* - 'runtime': the runtime requirements are being checked and shown on the
* status report page.
* The phase in which requirements are checked:
* - install: The module is being installed.
* - update: The module is enabled and update.php is run.
* - runtime: The runtime requirements are being checked and shown on the
* status report page.
*
* @return
* A keyed array of requirements. Each requirement is itself an array with
* the following items:
*
-
'
title
'
:
t
he name of the requirement.
*
-
'
value
'
:
t
he current value (e.g. version, time, level,
...
). During
*
install phase, this should only be used for version numbers, do not set
*
it if not applicable.
*
-
'
description
'
: description of the requirement/status.
*
-
'
severity
'
:
t
he requirement's result/severity level, one of:
*
- REQUIREMENT_INFO:
For info only.
*
- REQUIREMENT_OK:
The requirement is satisfied.
*
- REQUIREMENT_WARNING: The requirement failed with a warning.
*
- REQUIREMENT_ERROR:
The requirement failed with an error.
* - title:
T
he name of the requirement.
* - value:
T
he current value (e.g.
,
version, time, level,
etc
). During
* install phase, this should only be used for version numbers, do not set
* it if not applicable.
* - description:
The
description of the requirement/status.
* - severity:
T
he requirement's result/severity level, one of:
* - REQUIREMENT_INFO: For info only.
* - REQUIREMENT_OK: The requirement is satisfied.
* - REQUIREMENT_WARNING: The requirement failed with a warning.
* - REQUIREMENT_ERROR: The requirement failed with an error.
*/
function
hook_requirements
(
$phase
)
{
$requirements
=
array
();
...
...
This diff is collapsed.
Click to expand it.
update.php
+
5
−
2
View file @
729a23e1
...
...
@@ -308,8 +308,8 @@ function update_extra_requirements($requirements = NULL) {
* Check update requirements and report any errors.
*/
function
update_check_requirements
()
{
// Check
the system module and update.php requirements only
.
$requirements
=
module_invoke
(
'system'
,
'requirements'
,
'update'
);
// Check
requirements of all loaded modules
.
$requirements
=
module_invoke
_all
(
'requirements'
,
'update'
);
$requirements
+=
update_extra_requirements
();
$severity
=
drupal_requirements_severity
(
$requirements
);
...
...
@@ -398,6 +398,9 @@ function update_check_requirements() {
update_fix_compatibility
();
// Check the update requirements for all modules.
update_check_requirements
();
$op
=
isset
(
$_REQUEST
[
'op'
])
?
$_REQUEST
[
'op'
]
:
''
;
switch
(
$op
)
{
// update.php ops.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment