' . t('About') . ''; $output .= '

' . t('The PHP filter module adds a PHP filter to your site, for use with text formats. This filter adds the ability to execute PHP code in any text field that uses a text format (such as the body of a content item or the text of a comment). PHP is a general-purpose scripting language widely-used for web development, and is the language with which Drupal has been developed. For more information, see the online handbook entry for the PHP filter module.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/documentation/modules/php/')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Enabling execution of PHP in text fields') . '
'; $output .= '
' . t('The PHP filter module allows users with the proper permissions to include custom PHP code that will get executed when pages of your site are processed. While this is a powerful and flexible feature if used by a trusted user with PHP experience, it is a significant and dangerous security risk in the hands of a malicious or inexperienced user. Even a trusted user may accidentally compromise the site by entering malformed or incorrect PHP code. Only the most trusted users should be granted permission to use the PHP filter, and all PHP code added through the PHP filter should be carefully examined before use. Example PHP snippets can be found on Drupal.org.', array('@php-snippets' => url('http://drupal.org/documentation/customization/php-snippets'))) . '
'; $output .= '
'; return $output; } } /** * Implements hook_permission(). */ function php_permission() { return array( 'use PHP for settings' => array( 'title' => t('Use PHP for settings'), 'restrict access' => TRUE, ), ); } /** * Evaluates a string of PHP code. * * This is a wrapper around PHP's eval(). It uses output buffering to capture * both returned and printed text. Unlike eval(), we require code to be * surrounded by tags; in other words, we evaluate the code as if it * were a stand-alone PHP file. * * Using this wrapper also ensures that the PHP code which is evaluated can not * overwrite any variables in the calling code, unlike a regular eval() call. * * This function is also used as an implementation of * callback_filter_process(). * * @param $code * The code to evaluate. * * @return * A string containing the printed output of the code, followed by the * returned output of the code. * * @ingroup php_wrappers * * @see php_filter_info() */ function php_eval($code) { global $theme_path, $theme_info, $conf; // Store current theme path. $old_theme_path = $theme_path; // Restore theme_path to the theme, as long as php_eval() executes, // so code evaluated will not see the caller module as the current theme. // If theme info is not initialized get the path from theme_default. if (!isset($theme_info)) { $theme_path = drupal_get_path('theme', $conf['theme_default']); } else { $theme_path = dirname($theme_info->filename); } ob_start(); print eval('?>' . $code); $output = ob_get_contents(); ob_end_clean(); // Recover original theme path. $theme_path = $old_theme_path; return $output; } /** * Implements callback_filter_tips(). * * @see php_filter_info() */ function _php_filter_tips($filter, $format, $long = FALSE) { global $base_url; if ($long) { $output = '

' . t('Using custom PHP code') . '

'; $output .= '

' . t('Custom PHP code may be embedded in some types of site content, including posts and blocks. While embedding PHP code inside a post or block is a powerful and flexible feature when used by a trusted user with PHP experience, it is a significant and dangerous security risk when used improperly. Even a small mistake when posting PHP code may accidentally compromise your site.') . '

'; $output .= '

' . t('If you are unfamiliar with PHP, SQL, or Drupal, avoid using custom PHP code within posts. Experimenting with PHP may corrupt your database, render your site inoperable, or significantly compromise security.') . '

'; $output .= '

' . t('Notes:') . '

'; $output .= ''; $output .= '

' . t('A basic example: Creating a "Welcome" block that greets visitors with a simple message.') . '

'; $output .= ''; $output .= '

' . t('Drupal.org offers some example PHP snippets, or you can create your own with some PHP experience and knowledge of the Drupal system.', array('@drupal' => url('http://drupal.org'), '@php-snippets' => url('http://drupal.org/documentation/customization/php-snippets'))) . '

'; return $output; } else { return t('You may post PHP code. You should include <?php ?> tags.'); } } /** * Implements hook_filter_info(). * * Provide PHP code filter. Use with care. */ 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; }