summaryrefslogtreecommitdiff
path: root/modules/block/block.module
diff options
context:
space:
mode:
Diffstat (limited to 'modules/block/block.module')
-rw-r--r--modules/block/block.module28
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/block/block.module b/modules/block/block.module
index 4e7cc6270..59a84ff92 100644
--- a/modules/block/block.module
+++ b/modules/block/block.module
@@ -61,7 +61,7 @@ define('BLOCK_CACHE_PER_PAGE', 0x0004);
define('BLOCK_CACHE_GLOBAL', 0x0008);
/**
- * Implementation of hook_help().
+ * Implement hook_help().
*/
function block_help($path, $arg) {
switch ($path) {
@@ -88,7 +88,7 @@ function block_help($path, $arg) {
}
/**
- * Implementation of hook_theme().
+ * Implement hook_theme().
*/
function block_theme() {
return array(
@@ -105,7 +105,7 @@ function block_theme() {
}
/**
- * Implementation of hook_perm().
+ * Implement hook_perm().
*/
function block_perm() {
return array(
@@ -117,7 +117,7 @@ function block_perm() {
}
/**
- * Implementation of hook_menu().
+ * Implement hook_menu().
*/
function block_menu() {
$items['admin/build/block'] = array(
@@ -180,7 +180,7 @@ function _block_themes_access($theme) {
}
/**
- * Implementation of hook_block_list().
+ * Implement hook_block_list().
*/
function block_block_list() {
$blocks = array();
@@ -195,7 +195,7 @@ function block_block_list() {
}
/**
- * Implementation of hook_block_configure().
+ * Implement hook_block_configure().
*/
function block_block_configure($delta = 0, $edit = array()) {
$box = array('format' => FILTER_FORMAT_DEFAULT);
@@ -206,14 +206,14 @@ function block_block_configure($delta = 0, $edit = array()) {
}
/**
- * Implementation of hook_block_save().
+ * Implement hook_block_save().
*/
function block_block_save($delta = 0, $edit = array()) {
block_box_save($edit, $delta);
}
/**
- * Implementation of hook_block_view().
+ * Implement hook_block_view().
*
* Generates the administrator-defined blocks for display.
*/
@@ -224,7 +224,7 @@ function block_block_view($delta = 0, $edit = array()) {
}
/**
- * Implementation of hook_page_alter().
+ * Implement hook_page_alter().
*
* Render blocks into their regions.
*/
@@ -399,7 +399,7 @@ function block_box_save($edit, $delta) {
}
/**
- * Implementation of hook_user_form().
+ * Implement hook_user_form().
*/
function block_user_form(&$edit, &$account, $category = NULL) {
if ($category == 'account') {
@@ -421,7 +421,7 @@ function block_user_form(&$edit, &$account, $category = NULL) {
}
/**
- * Implementation of hook_user_validate().
+ * Implement hook_user_validate().
*/
function block_user_validate(&$edit, &$account, $category = NULL) {
if (empty($edit['block'])) {
@@ -431,7 +431,7 @@ function block_user_validate(&$edit, &$account, $category = NULL) {
}
/**
- * Implementation of hook_form_FORM_ID_alter().
+ * Implement hook_form_FORM_ID_alter().
*/
function block_form_system_performance_settings_alter(&$form, &$form_state) {
@@ -470,7 +470,7 @@ function block_form_system_performance_settings_alter(&$form, &$form_state) {
}
/**
- * Implementation of hook_form_FORM_ID_alter().
+ * Implement hook_form_FORM_ID_alter().
*/
function block_form_system_themes_form_alter(&$form, &$form_state) {
$form['#submit'][] = 'block_system_themes_form_submit';
@@ -722,7 +722,7 @@ function _block_get_cache_id($block) {
}
/**
- * Implementation of hook_flush_caches().
+ * Implement hook_flush_caches().
*/
function block_flush_caches() {
return array('cache_block');