function systeminfo_display_php in System Information 6
Same name and namespace in other branches
- 5.2 systeminfo.module \systeminfo_display_php()
- 6.2 systeminfo.module \systeminfo_display_php()
Menu callback of page 'PHP'.
1 string reference to 'systeminfo_display_php'
- systeminfo_menu in ./
systeminfo.module - Implementation of hook_menu().
File
- ./
systeminfo.module, line 677 - Displays information about the Drupal installation and system environment.
Code
function systeminfo_display_php() {
$phpinfo = variable_get('systeminfo_php_phpinfo_parameter', INFO_ALL);
phpinfo($phpinfo);
exit;
}