function php_filter_info

Implements hook_filter_info().

Provide PHP code filter. Use with care.

File

drupal/modules/php/php.module, line 138
Additional filter for PHP input.

Code

function php_filter_info() {
  $filters['php_code'] = array(
    'title' => t('PHP evaluator'),
    'description' => t('Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!'),
    'process callback' => 'php_eval',
    'tips callback' => '_php_filter_tips',
    'cache' => FALSE,
  );
  return $filters;
}