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/dblog | |
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/dblog')
-rw-r--r-- | modules/dblog/dblog.admin.inc | 2 | ||||
-rw-r--r-- | modules/dblog/dblog.install | 6 | ||||
-rw-r--r-- | modules/dblog/dblog.module | 12 |
3 files changed, 10 insertions, 10 deletions
diff --git a/modules/dblog/dblog.admin.inc b/modules/dblog/dblog.admin.inc index ace38c616..945a85a0e 100644 --- a/modules/dblog/dblog.admin.inc +++ b/modules/dblog/dblog.admin.inc @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_form_FORM_ID_alter(). + * Implement hook_form_FORM_ID_alter(). */ function dblog_form_system_logging_settings_alter(&$form, $form_state) { $form['dblog_row_limit'] = array( diff --git a/modules/dblog/dblog.install b/modules/dblog/dblog.install index 3c9afb61d..717be592c 100644 --- a/modules/dblog/dblog.install +++ b/modules/dblog/dblog.install @@ -7,7 +7,7 @@ */ /** - * Implementation of hook_install(). + * Implement hook_install(). */ function dblog_install() { // Create tables. @@ -15,7 +15,7 @@ function dblog_install() { } /** - * Implementation of hook_uninstall(). + * Implement hook_uninstall(). */ function dblog_uninstall() { // Remove tables. @@ -23,7 +23,7 @@ function dblog_uninstall() { } /** - * Implementation of hook_schema(). + * Implement hook_schema(). */ function dblog_schema() { $schema['watchdog'] = array( diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module index 44729e455..761d76acf 100644 --- a/modules/dblog/dblog.module +++ b/modules/dblog/dblog.module @@ -13,7 +13,7 @@ */ /** - * Implementation of hook_help(). + * Implement hook_help(). */ function dblog_help($path, $arg) { switch ($path) { @@ -28,7 +28,7 @@ function dblog_help($path, $arg) { } /** - * Implementation of hook_theme(). + * Implement hook_theme(). */ function dblog_theme() { return array( @@ -39,7 +39,7 @@ function dblog_theme() { } /** - * Implementation of hook_menu(). + * Implement hook_menu(). */ function dblog_menu() { $items['admin/reports/dblog'] = array( @@ -83,7 +83,7 @@ function dblog_init() { /** - * Implementation of hook_cron(). + * Implement hook_cron(). * * Remove expired log messages and flood control events. */ @@ -96,7 +96,7 @@ function dblog_cron() { } /** - * Implementation of hook_user_cancel(). + * Implement hook_user_cancel(). */ function dblog_user_cancel($edit, $account, $method) { switch ($method) { @@ -127,7 +127,7 @@ function _dblog_get_message_types() { } /** - * Implementation of hook_watchdog(). + * Implement hook_watchdog(). * * Note some values may be truncated for database column size restrictions. */ |