Changeset 1370242
- Timestamp:
- 03/13/2016 06:18:37 PM (10 years ago)
- Location:
- wordpress-php-info
- Files:
-
- 6 edited
-
assets/banner-772x250.png (modified) (previous)
-
assets/icon-128x128.png (modified) (previous)
-
assets/screenshot-1.jpg (modified) (previous)
-
trunk/css/thisismyurl-admin.css (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wordpress-php-info.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-php-info/trunk/css/thisismyurl-admin.css
r1047448 r1370242 17 17 padding: 10; 18 18 } 19 #wpfooter { 20 position: relative; 21 } -
wordpress-php-info/trunk/readme.txt
r1329678 r1370242 5 5 Tags: simple, php, admin, phpinfo,debugging, configuration, server, support, troubleshooting 6 6 Requires at least: 3.2.0 7 Tested up to: 4. 3.28 Stable tag: 14. 127 Tested up to: 4.5 8 Stable tag: 14.2 9 9 10 10 It's important for a non technical administrator to be able to diagnose server related problems in WordPress. -
wordpress-php-info/trunk/wordpress-php-info.php
r1329678 r1370242 2 2 /* 3 3 Plugin Name: WordPress phpinfo() 4 Plugin URI: http:// thisismyurl.com/downloads/wordpress-phpinfo/4 Plugin URI: http://whoischris/wordpress-phpinfo.zip 5 5 Description: This simple plugin adds an option to an adminstrator's Tools menu which displays standard phpinfo() feedback details to the user. 6 6 Author: Chris Flannagan 7 Version: 14. 128 Author URI: http:// thisismyurl.com/7 Version: 14.2 8 Author URI: http://whoischris.com/ 9 9 */ 10 10 … … 15 15 * This file contains all the logic required for the plugin 16 16 * 17 * @link http://w ordpress.org/extend/plugins/wordpress-phpinfo/17 * @link http://whoischris/wordpress-phpinfo.zip 18 18 * 19 19 * @package WordPress phpinfo() … … 101 101 <p><?php printf( __( 'The plugin has no settings, once activated it will work automattically. For further details, please view the <a href="%sreadme.txt">readme.txt</a> file included with this release.', 'thisismyurl_wpphpinfo' ), plugin_dir_url( __FILE__ ) ); ?></p> 102 102 <?php $this->phpinfo_output(); ?> 103 <br style='clear:both;' /> 104 Plugin adopted by <a href='http://whoischris.com'>Chris Flannagan</a>. 103 105 </div> 104 106 <?php … … 160 162 if( $file == $this_plugin ){ 161 163 $links[] = '<a href="options-general.php?page=thisismyurl_wpphpinfo">' . __( 'phpinfo()', 'thisismyurl_wpphpinfo' ) . '</a>'; 162 $links[] = '<a href="http:// thisismyurl.com/downloads/wordpress-phpinfo/">' . __( 'Author', 'thisismyurl_wpphpinfo' ) . '</a>';164 $links[] = '<a href="http://whoischris/wordpress-phpinfo.zip">' . __( 'Author', 'thisismyurl_wpphpinfo' ) . '</a>'; 163 165 } 164 166 return $links;
Note: See TracChangeset
for help on using the changeset viewer.