Plugin Directory

Changeset 1715069


Ignore:
Timestamp:
08/18/2017 06:19:18 AM (9 years ago)
Author:
webshouter
Message:

readme.txt update

Location:
ws-linkedin-follow-button
Files:
7 added
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • ws-linkedin-follow-button/trunk/readme.txt

    r1494317 r1715069  
    11=== WS LinkedIn Follow Button ===
    2 Contributors: webshouter,chandrakeshkumar
     2Contributors: webshouters
    33Tags: linkedin, follow, social, tweet, button, follow me, sidebar, widget, followers, widget, plugin, social, google, twitter
     4Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CCSEKJQGBQTEQ
    45Requires at least: 3.0
    5 Tested up to: 4.5.2
    6 Stable tag: 1.0.2
    7 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=XBSYRZVSV3JLJ
    8 License: GPLv2 or later
    9 License URI: https://www.gnu.org/licenses/gpl-2.0.html
     6Tested up to: 4.5.3
     7Stable tag: 4.3 
     8License: GPLv2 or later
     9License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    1111This plugin provides a small button displayed on your websites to help users easily follow a Company/Showcase Page.
     
    2323* Easy to add shortcode anywhere in your wordpress site.
    2424
    25 If you want more information about this plugin or another one don't doubt to visit my website:
     25If you want more information about this plugin or another one don't doubt to visit our website:
    2626
    27 [http://www.webshouter.net/](http://www.webshouter.net/ "Web Shouter")
     27[http://www.webshouters.com/](http://www.webshouters.com/ "WebShouters")
    2828
    2929= Technical Support =
    3030
    31 If any problem occurs, please contact us at [support@webshouter.net](mailto:support@webshouter.net).
     31If any problem occurs, please contact us at [support@webshouters.com](mailto:support@webshouters.com).
    3232
    3333== Installation ==
     
    4444== Changelog ==
    4545
     46= 2.0 =
     47
     48* Fix plugin notices
     49* Fix errors notices
     50* Update informations
     51
     52
    4653= 1.0 =
     54
    4755* First stable release.
    4856
    4957== Upgrade Notice ==
    5058
     59Upgrade to Version 2.0
  • ws-linkedin-follow-button/trunk/ws-linkedin-follow-button.php

    r1440616 r1715069  
    22/*
    33* Plugin Name: WS LinkedIn Follow Button
    4 * Plugin URI: http://www.webshouter.net
    5 * Description:  WS LinkedIn Follow Button plugin provides a small button displayed on your websites to help users easily follow a Company/Showcase Page.
    6 * Author: Chandrakesh Kumar
    7 * Author URI: http://www.webshouter.net
    8 * Version: 1.0
     4* Plugin URI: https://wordpress.org/plugins/ws-linkedin-follow-button/
     5* Description: This plugin provides a small button displayed on your websites to help users easily follow a Company/Showcase Page.
     6* Author: WebShouters
     7* Author URI: http://www.webshouters.com
     8* Version: 2.0
    99* Text Domain: ws-linkedin-follow-button
    1010* License: GPLv2 or later
     
    2424                )
    2525        );
    26        
    2726        load_plugin_textdomain( 'ws-linkedin-follow-button', false, basename( dirname( __FILE__ ) ) . '/languages' );
    28        
    2927    }
    3028 
     
    6866         
    6967    }
    70  
    71  
    7268    /**
    73       * Sanitize widget form values as they are saved.
    74       *
    75       * @see WP_Widget::update()
    76       *
    77       * @param array $new_instance Values just sent to be saved.
    78       * @param array $old_instance Previously saved values from database.
    79       *
    80       * @return array Updated safe values to be saved.
    81       */
     69      * Sanitize widget form values as they are saved.
     70      *
     71      * @see WP_Widget::update()
     72      *
     73      * @param array $new_instance Values just sent to be saved.
     74      * @param array $old_instance Previously saved values from database.
     75      *
     76      * @return array Updated safe values to be saved.
     77      */
    8278    public function update( $new_instance, $old_instance ) {       
    8379         
     
    8985        $instance['ws_lnfb_lang'] = strip_tags( $new_instance['ws_lnfb_lang'] );
    9086         
    91         return $instance;
    92          
     87        return $instance;
    9388    }
    9489 
Note: See TracChangeset for help on using the changeset viewer.