14 lines
398 B
Plaintext
14 lines
398 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install, update and uninstall functions for the php module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_disable().
|
|
*/
|
|
function php_disable() {
|
|
drupal_set_message(t('The PHP module has been disabled. 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.'));
|
|
}
|