function php_filter_info
Implements hook_filter_info().
Provide PHP code filter. Use with care.
File
-
modules/
php/ php.module, line 138
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.