php_filter_info
- Versions
- 7
php_filter_info()
Implements hook_filter_info().
Provide PHP code filter. Use with care.
Code
modules/php/php.module, line 130
<?php
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;
}
?>Login or register to post comments 