Plugin Directory

Changeset 1007938


Ignore:
Timestamp:
10/15/2014 02:21:23 PM (10 years ago)
Author:
tomknows
Message:

updated to wp4.x

Location:
pagerank
Files:
31 added
4 edited

Legend:

Unmodified
Added
Removed
  • pagerank/trunk/index.html

    r133248 r1007938  
    11<html>
    22<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/">
    44</head>
    55<body>
    66  <p>This file protects your webserver directoy!</p>
    77  <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>
    99</body>
    1010</html>
  • pagerank/trunk/lib/pagerankapi.class.php

    r133248 r1007938  
    22
    33// 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/blog
    64
    75class PagerankApi
  • pagerank/trunk/pagerank.php

    r234315 r1007938  
    22/*
    33Plugin Name: PageRank
    4 Plugin URI: http://www.tom-hengst.de
    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>. 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.3
     4Plugin URI: https://wordpress.org/plugins/pagerank/
     5Description: 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>.
     6Version: 0.4
    77Author: tomknows
    8 Author URI: http://www.tom-hengst.de
     8Author URI: https://profiles.wordpress.org/tomknows/
    99*/
    1010
    1111/**
    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
    1516 */
    1617
     
    3132    $this->id         = 'pagerank';
    3233    $this->title      = 'Pagerank';
    33     $this->version    = '0.3';
     34    $this->version    = '0.4';
    3435    $this->name       = $this->title. ' v'. $this->version;
    3536    $this->http_cache = array();
     
    210211 
    211212  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);
    213214  }
    214215
  • pagerank/trunk/readme.txt

    r234315 r1007938  
    11=== PageRank ===
    22Contributors: tomknows
    3 Donate link: http://www.tom-hengst.de
    43Tags: stats, wordpress, pagerank, google, statistics, badge, widget, widgets, sidebar, visits, activity, admin, plugin, links, google, page, counter
    54Requires at least: 2.5
    6 Tested up to: 2.7
     5Tested up to: 4.0
    76Stable tag: 0.3
    87
     
    1211
    1312Displays 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").
    1613
    1714== Installation ==
     
    3633
    3734== 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
    3839
    39  * v0.3 27.04.2010 minor xhtml fix
    40  * v0.2 09.07.2009 small url fix
    41  * v0.1 07.07.2009 initial release
    42 
Note: See TracChangeset for help on using the changeset viewer.