diff options
Diffstat (limited to 'modules/dblog')
-rw-r--r-- | modules/dblog/dblog.install | 2 | ||||
-rw-r--r-- | modules/dblog/dblog.module | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/modules/dblog/dblog.install b/modules/dblog/dblog.install index 2a0456927..5b5e6d092 100644 --- a/modules/dblog/dblog.install +++ b/modules/dblog/dblog.install @@ -7,7 +7,7 @@ */ /** - * Implement hook_schema(). + * Implements hook_schema(). */ function dblog_schema() { $schema['watchdog'] = array( diff --git a/modules/dblog/dblog.module b/modules/dblog/dblog.module index bdc3db114..cda8211ae 100644 --- a/modules/dblog/dblog.module +++ b/modules/dblog/dblog.module @@ -13,7 +13,7 @@ */ /** - * Implement hook_help(). + * Implements hook_help(). */ function dblog_help($path, $arg) { switch ($path) { @@ -28,7 +28,7 @@ function dblog_help($path, $arg) { } /** - * Implement hook_theme(). + * Implements hook_theme(). */ function dblog_theme() { return array( @@ -39,7 +39,7 @@ function dblog_theme() { } /** - * Implement hook_menu(). + * Implements hook_menu(). */ function dblog_menu() { $items['admin/reports/dblog'] = array( @@ -87,7 +87,7 @@ function dblog_init() { /** - * Implement hook_cron(). + * Implements hook_cron(). * * Remove expired log messages and flood control events. */ @@ -102,7 +102,7 @@ function dblog_cron() { } /** - * Implement hook_user_cancel(). + * Implements hook_user_cancel(). */ function dblog_user_cancel($edit, $account, $method) { switch ($method) { @@ -133,7 +133,7 @@ function _dblog_get_message_types() { } /** - * Implement hook_watchdog(). + * Implements hook_watchdog(). * * Note some values may be truncated for database column size restrictions. */ @@ -155,7 +155,7 @@ function dblog_watchdog(array $log_entry) { } /** - * Implement hook_form_FORM_ID_alter(). + * Implements hook_form_FORM_ID_alter(). */ function dblog_form_system_logging_settings_alter(&$form, $form_state) { $form['dblog_row_limit'] = array( |