Plugin Directory

Changeset 607602


Ignore:
Timestamp:
10/03/2012 06:50:47 PM (13 years ago)
Author:
emcode
Message:

updated Description with markdown and donate link

Location:
favparser
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • favparser/tags/1.0/readme.txt

    r583595 r607602  
    11=== FavParser ===
    22Contributors: emcode
    3 Donate link:
     3Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=SPY83T4ZJM26Y
    44Tags: favicon, links, posts, url, parse
    55Requires at least: 2.5
    66Tested up to: 3.4
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1616You can see the demo at http://kupimito.com/
    1717
     18[Plugin website](http://www.kupimito.com)
    1819
    1920== Installation ==
  • favparser/tags/1.1/favparser.php

    r582088 r607602  
    11<?php
    2 
    3 
    4 
    52/*
    6 
    73Plugin Name: FavParser
    8 
    94Plugin URI: http://www.emcode.net
    10 
    115Description: This plugin parses posts and adds favicon to every external link it finds, next to it. Liven up your links!
    12 
    136Version: 1.1
    14 
    157Author: Ivan Ciric
    16 
    178Author URI: http://www.emcode.net
    18 
    199License: GPL2
    20 
    2110*/
    22 
    23 
    24 
    2511/*  Copyright 2012  Ivan Ciric  (email : office@emcode.net)
    26 
    27 
    28 
    2912    This program is free software; you can redistribute it and/or modify
    30 
    3113    it under the terms of the GNU General Public License, version 2, as
    32 
    3314    published by the Free Software Foundation.
    34 
    35 
    36 
    3715    This program is distributed in the hope that it will be useful,
    38 
    3916    but WITHOUT ANY WARRANTY; without even the implied warranty of
    40 
    4117    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    42 
    4318    GNU General Public License for more details.
    44 
    45 
    46 
    4719    You should have received a copy of the GNU General Public License
    48 
    4920    along with this program; if not, write to the Free Software
    50 
    5121    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    52 
    5322*/
    54 
    5523/* Version check */
    5624global $wp_version;
     
    6533}
    6634
    67 
    68 
    69 
    7035register_activation_hook( __FILE__, array('favparser', 'putFavicon'));
    7136add_filter( 'the_content', array('favparser', 'putFavicon'), 5);
     
    7843     */
    7944    public static function putFavicon(){
    80 
    81        
    8245
    8346        //call WP global variable
     
    12992                $text = $replaced;
    13093
    131    
    132 
    13394        $i++;   
    13495
    13596            }
    136 
    137 
    13897    //return post contents to be displayed
    13998    return $text;
     
    142101
    143102}
    144 
    145 
    146103?>
  • favparser/trunk/favparser.php

    r582085 r607602  
    11<?php
    2 
    3 
    4 
    52/*
    6 
    73Plugin Name: FavParser
    8 
    94Plugin URI: http://www.emcode.net
    10 
    115Description: This plugin parses posts and adds favicon to every external link it finds, next to it. Liven up your links!
    12 
    136Version: 1.1
    14 
    157Author: Ivan Ciric
    16 
    178Author URI: http://www.emcode.net
    18 
    199License: GPL2
    20 
    2110*/
    22 
    23 
    24 
    2511/*  Copyright 2012  Ivan Ciric  (email : office@emcode.net)
    26 
    27 
    28 
    2912    This program is free software; you can redistribute it and/or modify
    30 
    3113    it under the terms of the GNU General Public License, version 2, as
    32 
    3314    published by the Free Software Foundation.
    34 
    35 
    36 
    3715    This program is distributed in the hope that it will be useful,
    38 
    3916    but WITHOUT ANY WARRANTY; without even the implied warranty of
    40 
    4117    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    42 
    4318    GNU General Public License for more details.
    44 
    45 
    46 
    4719    You should have received a copy of the GNU General Public License
    48 
    4920    along with this program; if not, write to the Free Software
    50 
    5121    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    52 
    5322*/
    54 
    5523/* Version check */
    5624global $wp_version;
     
    6533}
    6634
    67 
    68 
    69 
    7035register_activation_hook( __FILE__, array('favparser', 'putFavicon'));
    7136add_filter( 'the_content', array('favparser', 'putFavicon'), 5);
     
    7843     */
    7944    public static function putFavicon(){
    80 
    81        
    8245
    8346        //call WP global variable
     
    12992                $text = $replaced;
    13093
    131    
    132 
    13394        $i++;   
    13495
    13596            }
    136 
    137 
    13897    //return post contents to be displayed
    13998    return $text;
     
    142101
    143102}
    144 
    145 
    146103?>
Note: See TracChangeset for help on using the changeset viewer.