Changeset 1688383
- Timestamp:
- 06/30/2017 03:25:38 PM (9 years ago)
- Location:
- wordpress-php-info/trunk
- Files:
-
- 5 edited
-
includes/classes/phpinfo-page.php (modified) (1 diff)
-
includes/helper-functions.php (modified) (1 diff)
-
includes/templates/page.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wordpress-php-info.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-php-info/trunk/includes/classes/phpinfo-page.php
r1675109 r1688383 19 19 'manage_options', 20 20 PHPINFO_PREFIX . '_phpinfo', 21 [ 'PHPInfo_Page', 'display' ]21 array( 'PHPInfo_Page', 'display' ) 22 22 ); 23 23 } ); -
wordpress-php-info/trunk/includes/helper-functions.php
r1675172 r1688383 32 32 * Display phpinfo() function content 33 33 */ 34 function phpinfo_content( $option = -1 ) {34 function phpinfo_content( $option = 11 ) { 35 35 ob_start(); 36 phpinfo( 11);36 phpinfo( $option ); 37 37 $phpinfo = ob_get_clean(); 38 38 -
wordpress-php-info/trunk/includes/templates/page.php
r1675172 r1688383 48 48 type="text" name="emails" class="large-text" /> 49 49 <input type="submit" value="Email This Information" class="button action" /> 50 <!-- Coming Soon <input type="button" value="Copy This Information" class="button action right" /> //--> 50 <!-- 51 <input type="button" value="Copy This Information" class="button action right" /> 52 //--> 51 53 </form> 52 54 </div> -
wordpress-php-info/trunk/readme.txt
r1675172 r1688383 5 5 Requires at least: 3.2.0 6 6 Tested up to: 4.8 7 Stable tag: 16. 17 Stable tag: 16.2 8 8 9 9 It's important for a non technical administrator to be able to diagnose server related problems in WordPress and email the information through this plugin. -
wordpress-php-info/trunk/wordpress-php-info.php
r1675172 r1688383 5 5 * Description: This simple plugin adds an option to an administrator's Tools menu which displays standard phpinfo() feedback details to the user and allows to send in email. 6 6 * Author: Chris Flannagan 7 * Version: 16. 17 * Version: 16.2 8 8 * Author URI: https://whoischris.com/ 9 9 *
Note: See TracChangeset
for help on using the changeset viewer.