Changeset 1007938
- Timestamp:
- 10/15/2014 02:21:23 PM (10 years ago)
- Location:
- pagerank
- Files:
-
- 31 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
pagerank/trunk/index.html
r133248 r1007938 1 1 <html> 2 2 <head> 3 <meta http-equiv="refresh" content="0;URL=http ://www.tom-hengst.de/wordpress-plugins" />3 <meta http-equiv="refresh" content="0;URL=https://wordpress.org/plugins/kingofpop/"> 4 4 </head> 5 5 <body> 6 6 <p>This file protects your webserver directoy!</p> 7 7 <p>Do not call this url directly!</p> 8 <p><a href="http ://www.tom-hengst.de/wordpress-plugins">Wordpress Plugins</a></p>8 <p><a href="https://wordpress.org/plugins/kingofpop/">Wordpress Plugins</a></p> 9 9 </body> 10 10 </html> -
pagerank/trunk/lib/pagerankapi.class.php
r133248 r1007938 2 2 3 3 // PageRank Lookup v1.1 by HM2K (update: 31/01/07) based on an alogoritham found here: http://pagerank.gamesaga.net 4 5 // 10.30.2008 wrapped into a static class to avoid namespace conflicts by http://www.naden.de/blog6 4 7 5 class PagerankApi -
pagerank/trunk/pagerank.php
r234315 r1007938 2 2 /* 3 3 Plugin Name: PageRank 4 Plugin URI: http ://www.tom-hengst.de5 Description: Displays Google PageRank in the sidebar of your blog via widget or anywhere else. <a href="options-general.php?page=pagerank/pagerank.php">Configure here</a>. Check out more <a href="http://www.tom-hengst.de/wordpress-plugins/">Wordpress Plugins</a> by <a href="http://www.tom-hengst.de">Tom</a>.6 Version: 0. 34 Plugin URI: https://wordpress.org/plugins/pagerank/ 5 Description: Displays Google PageRank in the sidebar of your blog via widget or anywhere else. <a href="options-general.php?page=pagerank/pagerank.php">Configure here</a>. 6 Version: 0.4 7 7 Author: tomknows 8 Author URI: http ://www.tom-hengst.de8 Author URI: https://profiles.wordpress.org/tomknows/ 9 9 */ 10 10 11 11 /** 12 * v0.3 27.04.2010 minor xhtml fix 13 * v0.2 09.07.2009 small url fix 14 * v0.1 07.07.2009 initial release 12 * v0.4 2014-10-15 updated to wp 4.x 13 * v0.3 2010-04-27 minor xhtml fix 14 * v0.2 2009-09-07 small url fix 15 * v0.1 2009-07-07 initial release 15 16 */ 16 17 … … 31 32 $this->id = 'pagerank'; 32 33 $this->title = 'Pagerank'; 33 $this->version = '0. 3';34 $this->version = '0.4'; 34 35 $this->name = $this->title. ' v'. $this->version; 35 36 $this->http_cache = array(); … … 210 211 211 212 function getCode() { 212 return sprintf( '<div id="%s"><a class="snap_noshots" href="http ://www.tom-hengst.de" target="_blank"><img src="%s/%s/%s/%s.php?image=1" border="0" alt="%s" title="%s" /></a><br /><small>Plugin by <a href="http://www.tom-hengst.de" class="snap_noshots" target="_blank">Tom</a></small></div>', $this->id, get_bloginfo('wpurl'), PLUGINDIR, $this->id, $this->id, $this->title, $this->title);213 return sprintf( '<div id="%s"><a class="snap_noshots" href="https://profiles.wordpress.org/tomknows/" target="_blank"><img src="%s/%s/%s/%s.php?image=1" border="0" alt="%s" title="%s" /></a><br /><small>Plugin by <a href="https://profiles.wordpress.org/tomknows/" class="snap_noshots" target="_blank">Tom</a></small></div>', $this->id, get_bloginfo('wpurl'), PLUGINDIR, $this->id, $this->id, $this->title, $this->title); 213 214 } 214 215 -
pagerank/trunk/readme.txt
r234315 r1007938 1 1 === PageRank === 2 2 Contributors: tomknows 3 Donate link: http://www.tom-hengst.de4 3 Tags: stats, wordpress, pagerank, google, statistics, badge, widget, widgets, sidebar, visits, activity, admin, plugin, links, google, page, counter 5 4 Requires at least: 2.5 6 Tested up to: 2.75 Tested up to: 4.0 7 6 Stable tag: 0.3 8 7 … … 12 11 13 12 Displays Google PageRank in the sidebar of your blog via widget interfacce or anywhere else via function call. The Plugin comes with 3 different layouts. 14 15 Check out more [Wordpress Plugins](http://www.tom-hengst.de/wordpress-plugins "Wordpress Plugins") by [Tom](http://www.tom-hengst.de "Tom").16 13 17 14 == Installation == … … 36 33 37 34 == Change Log == 35 * v0.4 2014-10-15 updated to wp 4.x 36 * v0.3 2010-04-27 minor xhtml fix 37 * v0.2 2009-09-07 small url fix 38 * v0.1 2009-07-07 initial release 38 39 39 * v0.3 27.04.2010 minor xhtml fix40 * v0.2 09.07.2009 small url fix41 * v0.1 07.07.2009 initial release42
Note: See TracChangeset
for help on using the changeset viewer.