summaryrefslogtreecommitdiff
path: root/modules/dblog
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
committerDries Buytaert <dries@buytaert.net>2009-12-04 16:49:48 +0000
commit1da26fadfe9cdcbd89a912b9f61c710adff4c6c8 (patch)
treed77a0c5420a53c65d24b8ac1842b7f1e356c39d3 /modules/dblog
parent8523aca33e828c638f2373e5be4e80ed30866a58 (diff)
downloadbrdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.gz
brdo-1da26fadfe9cdcbd89a912b9f61c710adff4c6c8.tar.bz2
- Patch #502190 by jhodgdon, stella, sun: hook implementation headers out of compliance with standards.
Diffstat (limited to 'modules/dblog')
-rw-r--r--modules/dblog/dblog.install2
-rw-r--r--modules/dblog/dblog.module14
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(