Changeset 1715069
- Timestamp:
- 08/18/2017 06:19:18 AM (9 years ago)
- Location:
- ws-linkedin-follow-button
- Files:
-
- 7 added
- 2 deleted
- 2 edited
-
assets/screenshot-1.png (deleted)
-
assets/screenshot-2.png (deleted)
-
tags/1.0 (added)
-
tags/1.0/index.php (added)
-
tags/1.0/languages (added)
-
tags/1.0/languages/ws-linkedin-follow-button.mo (added)
-
tags/1.0/languages/ws-linkedin-follow-button.po (added)
-
tags/1.0/readme.txt (added)
-
tags/1.0/ws-linkedin-follow-button.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/ws-linkedin-follow-button.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ws-linkedin-follow-button/trunk/readme.txt
r1494317 r1715069 1 1 === WS LinkedIn Follow Button === 2 Contributors: webshouter ,chandrakeshkumar2 Contributors: webshouters 3 3 Tags: linkedin, follow, social, tweet, button, follow me, sidebar, widget, followers, widget, plugin, social, google, twitter 4 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CCSEKJQGBQTEQ 4 5 Requires 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 6 Tested up to: 4.5.3 7 Stable tag: 4.3 8 License: GPLv2 or later 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html 10 10 11 11 This plugin provides a small button displayed on your websites to help users easily follow a Company/Showcase Page. … … 23 23 * Easy to add shortcode anywhere in your wordpress site. 24 24 25 If you want more information about this plugin or another one don't doubt to visit mywebsite:25 If you want more information about this plugin or another one don't doubt to visit our website: 26 26 27 [http://www.webshouter .net/](http://www.webshouter.net/ "Web Shouter")27 [http://www.webshouters.com/](http://www.webshouters.com/ "WebShouters") 28 28 29 29 = Technical Support = 30 30 31 If any problem occurs, please contact us at [support@webshouter .net](mailto:support@webshouter.net).31 If any problem occurs, please contact us at [support@webshouters.com](mailto:support@webshouters.com). 32 32 33 33 == Installation == … … 44 44 == Changelog == 45 45 46 = 2.0 = 47 48 * Fix plugin notices 49 * Fix errors notices 50 * Update informations 51 52 46 53 = 1.0 = 54 47 55 * First stable release. 48 56 49 57 == Upgrade Notice == 50 58 59 Upgrade to Version 2.0 -
ws-linkedin-follow-button/trunk/ws-linkedin-follow-button.php
r1440616 r1715069 2 2 /* 3 3 * Plugin Name: WS LinkedIn Follow Button 4 * Plugin URI: http ://www.webshouter.net5 * Description: WS LinkedIn Follow Buttonplugin provides a small button displayed on your websites to help users easily follow a Company/Showcase Page.6 * Author: Chandrakesh Kumar7 * Author URI: http://www.webshouter .net8 * Version: 1.04 * 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 9 9 * Text Domain: ws-linkedin-follow-button 10 10 * License: GPLv2 or later … … 24 24 ) 25 25 ); 26 27 26 load_plugin_textdomain( 'ws-linkedin-follow-button', false, basename( dirname( __FILE__ ) ) . '/languages' ); 28 29 27 } 30 28 … … 68 66 69 67 } 70 71 72 68 /** 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 */ 82 78 public function update( $new_instance, $old_instance ) { 83 79 … … 89 85 $instance['ws_lnfb_lang'] = strip_tags( $new_instance['ws_lnfb_lang'] ); 90 86 91 return $instance; 92 87 return $instance; 93 88 } 94 89
Note: See TracChangeset
for help on using the changeset viewer.