Changeset 1007913
- Timestamp:
- 10/15/2014 01:49:13 PM (10 years ago)
- Location:
- twittergrid
- Files:
-
- 32 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
twittergrid/trunk/index.html
r132971 r1007913 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/twittergrid/"> 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/twittergrid/">Wordpress Plugins</a></p> 9 9 </body> 10 10 </html> -
twittergrid/trunk/readme.txt
r235361 r1007913 1 1 === TwitterGrid === 2 2 Contributors: tomknows 3 Donate link: http://www.tom-hengst.de/donate4 3 Tags: wordpress, twitter, tweets, twit, follower, friends, badge, widget, widgets, sidebar, visits, visitors, admin, plugin, links, page, images, blogging, microblogging 5 4 Requires at least: 2.0.2 6 Tested up to: 2.77 Stable tag: 0. 25 Tested up to: 4.0 6 Stable tag: 0.3 8 7 9 8 Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. The plugin is widget ready and comes with many configuration options! … … 12 11 13 12 Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. The plugin is widget ready and comes with many configuration options! 14 15 Check out more [Wordpress Plugins](http://www.tom-hengst.de/wordpress-plugins "Wordpress Plugins") brought to you by [Tom](http://www.tom-hengst.de "Tom").16 13 17 14 == Installation == … … 36 33 == Change Log == 37 34 38 * v0. 2 29.04.2010 minor xhtml fixes39 * v0. 1 07.07.2009 initial release40 35 * v0.3 2014-10-15 frozen because ot twitter api changes 36 * v0.2 2010-04-29 minor xhtml fixes 37 * v0.1 2009-07-07 initial release -
twittergrid/trunk/twittergrid.php
r235361 r1007913 2 2 /* 3 3 Plugin Name: TwitterGrid 4 Plugin URI: http ://www.tom-hengst.de/wordpress-plugins5 Description: Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. 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. 24 Plugin URI: https://wordpress.org/plugins/twittergrid/ 5 Description: Displays the Twitter-Images of all your friends as a mosaic in the sidebar of your blog. 6 Version: 0.3 7 7 Author: tom 8 Author URI: http ://www.tom-hengst.de8 Author URI: https://profiles.wordpress.org/tomknows/ 9 9 */ 10 10 11 11 /** 12 * v0.2 29.04.2010 minor xhtml fixes 13 * v0.1 07.07.2009 initial release 12 * v0.3 2014-10-15 frozen because ot twitter api changes 13 * v0.2 2010-04-29 minor xhtml fixes 14 * v0.1 2009-07-07 initial release 14 15 */ 15 16 class TwitterGrid { … … 27 28 $this->id = 'twittergrid'; 28 29 $this->title = 'TwitterGrid'; 29 $this->version = '0. 2';30 $this->plugin_url = 'http ://www.tom-hengst.de/wordpress-plugins';30 $this->version = '0.3'; 31 $this->plugin_url = 'https://wordpress.org/plugins/twittergrid/'; 31 32 $this->name = 'TwitterGrid v'. $this->version; 32 33 $this->url = get_bloginfo('wpurl'). '/wp-content/plugins/' . $this->id; … … 238 239 * not the best way, but we can't assume that every webhost simplexml installed 239 240 */ 240 if( @$Snoopy->fetch('http://twitter.com/statuses/friends/' . $user . '.xml')) {241 if($Snoopy->fetch('http://twitter.com/statuses/friends/' . $user . '.xml')) { 241 242 if(!empty($Snoopy->results)) { 242 243 if(preg_match_all('/<user>(.*?)<\/user>/s', $Snoopy->results, $matches)) { … … 303 304 } 304 305 305 $data = '<div id="twittergrid">'. $data . (intval($this->options['show_twitter_link'])==1?'<strong><a href="http://twitter.com/'.$this->options['username'].'" rel="nofollow" target="_blank">'.__('Follow me!', $this->id).'</a></strong>':'').'<div>TwitterGrid by <a href="http ://www.tom-hengst.de" target="_blank" class="snap_noshots">Tom</a></div></div>';306 $data = '<div id="twittergrid">'. $data . (intval($this->options['show_twitter_link'])==1?'<strong><a href="http://twitter.com/'.$this->options['username'].'" rel="nofollow" target="_blank">'.__('Follow me!', $this->id).'</a></strong>':'').'<div>TwitterGrid by <a href="https://profiles.wordpress.org/tomknows/" target="_blank" class="snap_noshots">Tom</a></div></div>'; 306 307 307 308 if(is_writeable($this->path. '/cache')) {
Note: See TracChangeset
for help on using the changeset viewer.