summaryrefslogtreecommitdiff
path: root/modules/php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/php')
-rw-r--r--modules/php/php.install4
-rw-r--r--modules/php/php.module8
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/php/php.install b/modules/php/php.install
index 6eaa0ba96..e2debe49f 100644
--- a/modules/php/php.install
+++ b/modules/php/php.install
@@ -7,7 +7,7 @@
*/
/**
- * Implementation of hook_install().
+ * Implement hook_install().
*/
function php_install() {
$format_exists = (bool) db_query_range('SELECT 1 FROM {filter_format} WHERE name = :name', array(':name' => 'PHP code'), 0, 1)->fetchField();
@@ -39,7 +39,7 @@ function php_install() {
}
/**
- * Implementation of hook_disable().
+ * Implement hook_disable().
*/
function php_disable() {
drupal_set_message(t('The PHP module has been disabled. Please note that any existing content that was using the PHP filter will now be visible in plain text. This might pose a security risk by exposing sensitive information, if any, used in the PHP code.'));
diff --git a/modules/php/php.module b/modules/php/php.module
index cd1ea53ca..d4b4b43a0 100644
--- a/modules/php/php.module
+++ b/modules/php/php.module
@@ -8,7 +8,7 @@
/**
- * Implementation of hook_help().
+ * Implement hook_help().
*/
function php_help($path, $arg) {
switch ($path) {
@@ -22,7 +22,7 @@ function php_help($path, $arg) {
}
/**
- * Implementation of hook_perm().
+ * Implement hook_perm().
*/
function php_perm() {
return array(
@@ -78,7 +78,7 @@ function php_eval($code) {
}
/**
- * Implementation of hook_filter_tips().
+ * Implement hook_filter_tips().
*/
function php_filter_tips($delta, $format, $long = FALSE) {
global $base_url;
@@ -121,7 +121,7 @@ else {
}
/**
- * Implementation of hook_filter(). Contains a basic PHP evaluator.
+ * Implement hook_filter(). Contains a basic PHP evaluator.
*
* Executes PHP code. Use with care.
*/