php.module 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?php
  2. /**
  3. * @file
  4. * Additional filter for PHP input.
  5. */
  6. /**
  7. * Implements hook_help().
  8. */
  9. function php_help($path, $arg) {
  10. switch ($path) {
  11. case 'admin/help#php':
  12. $output = '';
  13. $output .= '<h3>' . t('About') . '</h3>';
  14. $output .= '<p>' . t('The PHP filter module adds a PHP filter to your site, for use with <a href="@filter">text formats</a>. 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). <a href="@php-net">PHP</a> 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 <a href="@php">PHP filter module</a>.', array('@filter' => url('admin/help/filter'), '@php-net' => 'http://www.php.net', '@php' => 'http://drupal.org/documentation/modules/php/')) . '</p>';
  15. $output .= '<h3>' . t('Uses') . '</h3>';
  16. $output .= '<dl>';
  17. $output .= '<dt>' . t('Enabling execution of PHP in text fields') . '</dt>';
  18. $output .= '<dd>' . 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. <a href="@php-snippets">Example PHP snippets</a> can be found on Drupal.org.', array('@php-snippets' => url('http://drupal.org/documentation/customization/php-snippets'))) . '</dd>';
  19. $output .= '</dl>';
  20. return $output;
  21. }
  22. }
  23. /**
  24. * Implements hook_permission().
  25. */
  26. function php_permission() {
  27. return array(
  28. 'use PHP for settings' => array(
  29. 'title' => t('Use PHP for settings'),
  30. 'restrict access' => TRUE,
  31. ),
  32. );
  33. }
  34. /**
  35. * Evaluates a string of PHP code.
  36. *
  37. * This is a wrapper around PHP's eval(). It uses output buffering to capture
  38. * both returned and printed text. Unlike eval(), we require code to be
  39. * surrounded by <?php ?> tags; in other words, we evaluate the code as if it
  40. * were a stand-alone PHP file.
  41. *
  42. * Using this wrapper also ensures that the PHP code which is evaluated can not
  43. * overwrite any variables in the calling code, unlike a regular eval() call.
  44. *
  45. * This function is also used as an implementation of
  46. * callback_filter_process().
  47. *
  48. * @param $code
  49. * The code to evaluate.
  50. *
  51. * @return
  52. * A string containing the printed output of the code, followed by the
  53. * returned output of the code.
  54. *
  55. * @ingroup php_wrappers
  56. *
  57. * @see php_filter_info()
  58. */
  59. function php_eval($code) {
  60. global $theme_path, $theme_info, $conf;
  61. // Store current theme path.
  62. $old_theme_path = $theme_path;
  63. // Restore theme_path to the theme, as long as php_eval() executes,
  64. // so code evaluated will not see the caller module as the current theme.
  65. // If theme info is not initialized get the path from theme_default.
  66. if (!isset($theme_info)) {
  67. $theme_path = drupal_get_path('theme', $conf['theme_default']);
  68. }
  69. else {
  70. $theme_path = dirname($theme_info->filename);
  71. }
  72. ob_start();
  73. print eval('?>' . $code);
  74. $output = ob_get_contents();
  75. ob_end_clean();
  76. // Recover original theme path.
  77. $theme_path = $old_theme_path;
  78. return $output;
  79. }
  80. /**
  81. * Implements callback_filter_tips().
  82. *
  83. * @see php_filter_info()
  84. */
  85. function _php_filter_tips($filter, $format, $long = FALSE) {
  86. global $base_url;
  87. if ($long) {
  88. $output = '<h4>' . t('Using custom PHP code') . '</h4>';
  89. $output .= '<p>' . 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.') . '</p>';
  90. $output .= '<p>' . 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.') . '</p>';
  91. $output .= '<p>' . t('Notes:') . '</p>';
  92. $output .= '<ul><li>' . t('Remember to double-check each line for syntax and logic errors <strong>before</strong> saving.') . '</li>';
  93. $output .= '<li>' . t('Statements must be correctly terminated with semicolons.') . '</li>';
  94. $output .= '<li>' . t('Global variables used within your PHP code retain their values after your script executes.') . '</li>';
  95. $output .= '<li>' . t('<code>register_globals</code> is <strong>turned off</strong>. If you need to use forms, understand and use the functions in <a href="@formapi">the Drupal Form API</a>.', array('@formapi' => url('http://api.drupal.org/api/group/form_api/7'))) . '</li>';
  96. $output .= '<li>' . t('Use a <code>print</code> or <code>return</code> statement in your code to output content.') . '</li>';
  97. $output .= '<li>' . t('Develop and test your PHP code using a separate test script and sample database before deploying on a production site.') . '</li>';
  98. $output .= '<li>' . t('Consider including your custom PHP code within a site-specific module or <code>template.php</code> file rather than embedding it directly into a post or block.') . '</li>';
  99. $output .= '<li>' . t('Be aware that the ability to embed PHP code within content is provided by the PHP Filter module. If this module is disabled or deleted, then blocks and posts with embedded PHP may display, rather than execute, the PHP code.') . '</li></ul>';
  100. $output .= '<p>' . t('A basic example: <em>Creating a "Welcome" block that greets visitors with a simple message.</em>') . '</p>';
  101. $output .= '<ul><li>' . t('<p>Add a custom block to your site, named "Welcome" . With its text format set to "PHP code" (or another format supporting PHP input), add the following in the Block body:</p>
  102. <pre>
  103. print t(\'Welcome visitor! Thank you for visiting.\');
  104. </pre>') . '</li>';
  105. $output .= '<li>' . t('<p>To display the name of a registered user, use this instead:</p>
  106. <pre>
  107. global $user;
  108. if ($user->uid) {
  109. print t(\'Welcome @name! Thank you for visiting.\', array(\'@name\' => format_username($user)));
  110. }
  111. else {
  112. print t(\'Welcome visitor! Thank you for visiting.\');
  113. }
  114. </pre>') . '</li></ul>';
  115. $output .= '<p>' . t('<a href="@drupal">Drupal.org</a> offers <a href="@php-snippets">some example PHP snippets</a>, 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'))) . '</p>';
  116. return $output;
  117. }
  118. else {
  119. return t('You may post PHP code. You should include &lt;?php ?&gt; tags.');
  120. }
  121. }
  122. /**
  123. * Implements hook_filter_info().
  124. *
  125. * Provide PHP code filter. Use with care.
  126. */
  127. function php_filter_info() {
  128. $filters['php_code'] = array(
  129. 'title' => t('PHP evaluator'),
  130. 'description' => t('Executes a piece of PHP code. The usage of this filter should be restricted to administrators only!'),
  131. 'process callback' => 'php_eval',
  132. 'tips callback' => '_php_filter_tips',
  133. 'cache' => FALSE,
  134. );
  135. return $filters;
  136. }