diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-05-27 18:34:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-05-27 18:34:03 +0000 |
commit | 0f4060f377a6ccea57a183b3c3e4801c450f5476 (patch) | |
tree | 07a7bd87373613f3e884c8f56bfb9911eda38511 /modules/update | |
parent | 5bdcc4ada232bf92e3d529962d9f7aa2536605cc (diff) | |
download | brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.gz brdo-0f4060f377a6ccea57a183b3c3e4801c450f5476.tar.bz2 |
- Patch #472642 by stella, agentrickard: remove 'implementation of' nominalizations from Docblocks.
Diffstat (limited to 'modules/update')
-rw-r--r-- | modules/update/update.install | 6 | ||||
-rw-r--r-- | modules/update/update.module | 18 |
2 files changed, 12 insertions, 12 deletions
diff --git a/modules/update/update.install b/modules/update/update.install index 1833f5dec..8814b9781 100644 --- a/modules/update/update.install +++ b/modules/update/update.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement hook_install(). */ function update_install() { // Create cache table. @@ -17,7 +17,7 @@ function update_install() { } /** - * Implementation of hook_uninstall(). + * Implement hook_uninstall(). */ function update_uninstall() { // Remove cache table. @@ -37,7 +37,7 @@ function update_uninstall() { } /** - * Implementation of hook_schema(). + * Implement hook_schema(). */ function update_schema() { $schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache'); diff --git a/modules/update/update.module b/modules/update/update.module index bb05efb9b..0013bbeac 100644 --- a/modules/update/update.module +++ b/modules/update/update.module @@ -53,7 +53,7 @@ define('UPDATE_UNKNOWN', -2); /** - * Implementation of hook_help(). + * Implement hook_help(). */ function update_help($path, $arg) { switch ($path) { @@ -112,7 +112,7 @@ function update_help($path, $arg) { } /** - * Implementation of hook_menu(). + * Implement hook_menu(). */ function update_menu() { $items = array(); @@ -142,7 +142,7 @@ function update_menu() { } /** - * Implementation of the hook_theme() registry. + * Implement the hook_theme() registry. */ function update_theme() { return array( @@ -159,7 +159,7 @@ function update_theme() { } /** - * Implementation of hook_requirements(). + * Implement hook_requirements(). * * @return * An array describing the status of the site regarding available updates. @@ -272,7 +272,7 @@ function _update_requirement_check($project, $type) { } /** - * Implementation of hook_cron(). + * Implement hook_cron(). */ function update_cron() { $frequency = variable_get('update_check_frequency', 1); @@ -286,7 +286,7 @@ function update_cron() { } /** - * Implementation of hook_form_FORM_ID_alter(). + * Implement hook_form_FORM_ID_alter(). * * Adds a submit handler to the system modules and themes forms, so that if a * site admin saves either form, we invalidate the cache of available updates. @@ -298,7 +298,7 @@ function update_form_system_themes_form_alter(&$form, $form_state) { } /** - * Implementation of hook_form_FORM_ID_alter(). + * Implement hook_form_FORM_ID_alter(). * * Adds a submit handler to the system modules and themes forms, so that if a * site admin saves either form, we invalidate the cache of available updates. @@ -383,7 +383,7 @@ function update_refresh() { } /** - * Implementation of hook_mail(). + * Implement hook_mail(). * * Constructs the email notification message when the site is out of date. * @@ -596,7 +596,7 @@ function _update_cache_clear($cid = NULL) { } /** - * Implementation of hook_flush_caches(). + * Implement hook_flush_caches(). * * Called from update.php (among others) to flush the caches. * Since we're running update.php, we are likely to install a new version of |