PluginProbe
Super RSS Reader – Add attractive RSS Feed Widget / 4.7
Super RSS Reader – Add attractive RSS Feed Widget v4.7
trunk 0.8 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 3.0 3.1 3.2 4.0 4.0.1 4.1 4.2 4.3 4.4 4.4.1 4.5 4.6 4.7 4.8 All 33 releases
← All changes | super-rss-reader.php +8 -5 3.14.7 View file →
@@ -1,20 +1,20 @@
1 1 <?php
2 2 /*
3 3 * Plugin Name: Super RSS Reader
4 4 * Plugin URI: https://www.aakashweb.com/wordpress-plugins/super-rss-reader/
5 - * Author URI: https://www.aakashweb.com/
6 - * Description: Super RSS Reader is jQuery based RSS reader widget, which displays the RSS feeds in the widget in an attractive way. It uses the jQuery easy ticker plugin to add a news ticker like effect to the RSS feeds. Multiple RSS feeds can be added for a single widget and they get separated in tabs.
5 + * Description: Display any RSS feed(s) in widget with news ticker effect in multiple tabs, thumbnails, customizable color themes and more.
7 6 * Author: Aakash Chakravarthy
8 7 * Author URI: https://www.aakashweb.com/
9 - * Version: 3.1
8 + * Version: 4.7
10 9 * Text Domain: super-rss-reader
11 10 * Domain Path: /languages
12 11 */
13 12
14 -define( 'SRR_VERSION', '3.1' );
13 +define( 'SRR_VERSION', '4.7' );
15 14 define( 'SRR_PATH', plugin_dir_path( __FILE__ ) ); // All have trailing slash
16 15 define( 'SRR_URL', plugin_dir_url( __FILE__ ) );
16 +define( 'SRR_BASE_NAME', plugin_basename( __FILE__ ) );
17 17
18 18 final class Super_RSS_Reader{
19 19
20 20 public static function init(){
@@ -20,14 +20,17 @@
20 20 public static function init(){
21 21
22 22 self::includes();
23 23
24 - add_action( 'plugins_loaded', array( __class__, 'load_text_domain' ) );
24 + add_action( 'plugins_loaded', array( __CLASS__, 'load_text_domain' ) );
25 25
26 26 }
27 27
28 28 public static function includes(){
29 29
30 + include_once( SRR_PATH . 'includes/utilities.php' );
31 + include_once( SRR_PATH . 'includes/options.php' );
32 + include_once( SRR_PATH . 'includes/feed.php' );
30 33 include_once( SRR_PATH . 'includes/widget.php' );
31 34 include_once( SRR_PATH . 'includes/widget-admin.php' );
32 35
33 36 }