HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/feedzy-rss-feeds/feedzy-rss-feed.php
<?php
/**
 * The plugin bootstrap file
 *
 * This file is read by WordPress to generate the plugin information in the plugin
 * admin area. This file also includes all of the dependencies used by the plugin,
 * registers the activation and deactivation functions, and defines a function
 * that starts the plugin.
 *
 * @link              http://themeisle.com
 * @since             3.0.0
 * @package           feedzy-rss-feeds
 *
 * @wordpress-plugin
 * Plugin Name:       Feedzy RSS Feeds Lite
 * Plugin URI:        https://themeisle.com/plugins/feedzy-rss-feeds/
 * Description:       A small and lightweight RSS aggregator plugin. Fast and very easy to use, it allows you to aggregate multiple RSS feeds into your WordPress site through fully customizable shortcodes & widgets.
 * Version:           5.1.6
 * Author:            Themeisle
 * Author URI:        http://themeisle.com
 * License:           GPL-2.0+
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 * Text Domain:       feedzy-rss-feeds
 * Domain Path:       /languages
 * WordPress Available:  yes
 * Pro Slug:    feedzy-rss-feeds-pro
 * Requires License:    no
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}
/**
 * The code that runs during plugin activation.
 * This action is documented in includes/feedzy-rss-feeds-activator.php
 */
function activate_feedzy_rss_feeds() {
	Feedzy_Rss_Feeds_Activator::activate();
}

/**
 * The code that runs during plugin deactivation.
 * This action is  documented in includes/feedzy-rss-feeds-deactivator.php
 *
 * @since    3.0.0
 */
function deactivate_feedzy_rss_feeds() {
	Feedzy_Rss_Feeds_Deactivator::deactivate();
}

register_activation_hook( __FILE__, 'activate_feedzy_rss_feeds' );
register_deactivation_hook( __FILE__, 'deactivate_feedzy_rss_feeds' );
/**
 * The function that will handle the queue for autoloader.
 * 
 * @param string $class_to_load The name of class to load.
 *
 * @since    3.0.0
 */
function feedzy_rss_feeds_autoload( $class_to_load ) {
	$namespaces = array( 'Feedzy_Rss_Feeds' );
	foreach ( $namespaces as $namespace ) {
		if ( substr( $class_to_load, 0, strlen( $namespace ) ) === $namespace ) {
			$filename = plugin_dir_path( __FILE__ ) . 'includes/' . str_replace( '_', '-', strtolower( $class_to_load ) ) . '.php';
			if ( is_readable( $filename ) ) {
				require_once $filename;

				return true;
			}
			$filename = plugin_dir_path( __FILE__ ) . 'includes/abstract/' . str_replace( '_', '-', strtolower( $class_to_load ) ) . '.php';
			if ( is_readable( $filename ) ) {
				require_once $filename;

				return true;
			}
			$filename = plugin_dir_path( __FILE__ ) . 'includes/admin/' . str_replace( '_', '-', strtolower( $class_to_load ) ) . '.php';
			if ( is_readable( $filename ) ) {
				require_once $filename;

				return true;
			}
			$filename = plugin_dir_path( __FILE__ ) . 'includes/gutenberg/' . str_replace( '_', '-', strtolower( $class_to_load ) ) . '.php';
			if ( is_readable( $filename ) ) {
				require_once $filename;

				return true;
			}
			$filename = plugin_dir_path( __FILE__ ) . 'includes/util/' . str_replace( '_', '-', strtolower( $class_to_load ) ) . '.php';
			if ( is_readable( $filename ) ) {
				require_once $filename;

				return true;
			}
			$filename = plugin_dir_path( __FILE__ ) . 'includes/elementor/' . str_replace( '_', '-', strtolower( $class_to_load ) ) . '.php';
			if ( is_readable( $filename ) ) {
				require_once $filename;

				return true;
			}
		}
	}
	if ( is_readable( plugin_dir_path( __FILE__ ) . 'includes/admin/feedzy-wp-widget.php' ) ) {
		require_once plugin_dir_path( __FILE__ ) . 'includes/admin/feedzy-wp-widget.php';

		return true;
	}

	return false;
}

/**
 * Begins execution of the plugin.
 *
 * Since everything within the plugin is registered via hooks,
 * then kicking off the plugin from this point in the file does
 * not affect the page life cycle.s
 *
 * @since    3.0.0.
 */
function run_feedzy_rss_feeds() {
	define( 'FEEDZY_BASEFILE', __FILE__ );
	define( 'FEEDZY_ABSURL', plugins_url( '/', __FILE__ ) );
	define( 'FEEDZY_BASENAME', plugin_basename( __FILE__ ) );
	define( 'FEEDZY_ABSPATH', __DIR__ );
	define( 'FEEDZY_DIRNAME', basename( FEEDZY_ABSPATH ) );
	define( 'FEEDZY_UPSELL_LINK', 'https://themeisle.com/plugins/feedzy-rss-feeds/upgrade/' );
	define( 'FEEDZY_SUBSCRIBE_API', 'https://api.themeisle.com/tracking/subscribe' );
	define( 'FEEDZY_NAME', 'Feedzy RSS Feeds' );
	define( 'FEEDZY_USER_AGENT', 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36' );
	define( 'FEEDZY_ALLOW_HTTPS', true );
	define( 'FEEDZY_REST_VERSION', '1' );
	// to redirect all themeisle_log_event to error log.
	define( 'FEEDZY_LOCAL_DEBUG', false );
	define( 'FEEDZY_FEED_CUSTOM_TAG_NAMESPACE', 'http://feedzy.themeisle.com' );

	// always make this true before testing
	// also used in gutenberg.
	define( 'FEEDZY_DISABLE_CACHE_FOR_TESTING', false );

	$vendor_file = FEEDZY_ABSPATH . '/vendor/autoload.php';
	if ( is_readable( $vendor_file ) ) {
		require_once $vendor_file;
	}
	$feedzy = Feedzy_Rss_Feeds::instance();
	$feedzy->run();
	add_filter( 'themeisle_sdk_products', 'feedzy_register_sdk', 10, 1 );
	add_filter( 'pirate_parrot_log', 'feedzy_register_parrot', 10, 1 );
	add_filter(
		'themeisle_sdk_compatibilities/' . FEEDZY_DIRNAME,
		function ( $compatibilities ) {
			$compatibilities['FeedzyPRO'] = array(
				'basefile'  => defined( 'FEEDZY_PRO_BASEFILE' ) ? FEEDZY_PRO_BASEFILE : '',
				'required'  => '2.4',
				'tested_up' => '3.1',
			);
			return $compatibilities;
		}
	);
	add_filter(
		'feedzy_rss_feeds_about_us_metadata',
		function () {
			return array(
				'logo'             => FEEDZY_ABSURL . 'img/feedzy.svg',
				'location'         => 'feedzy-admin-menu',
				'has_upgrade_menu' => ! feedzy_is_pro(),
				'upgrade_text'     => esc_html__( 'Upgrade to Pro', 'feedzy-rss-feeds' ),
				'upgrade_link'     => tsdk_translate_link( tsdk_utmify( FEEDZY_UPSELL_LINK, 'aboutUsPage' ) ),
			);
		}
	);
	add_filter(
		'feedzy_rss_feeds_welcome_metadata',
		function () {
			return array(
				'is_enabled' => ! defined( 'FEEDZY_PRO_ABSPATH' ),
				'pro_name'   => 'Feedzy PRO',
				'logo'       => FEEDZY_ABSURL . 'img/feedzy.svg',
				'cta_link'   => tsdk_translate_link(
					tsdk_utmify(
						add_query_arg(
							array(
								'discount' => 'LOYALUSER5824',
								'dvalue'   => 55,
							),
							FEEDZY_UPSELL_LINK
						),
						'feedzy-welcome',
						'notice'
					)
				),
			);
		}
	);
	add_filter(
		'feedzy_rss_feeds_welcome_upsell_message',
		function () {
			return sprintf(
			/* translators: 1: opening <p> tag, 2: opening <b> tag, 3: closing </b> tag, 4: product name, 5: pro product name, 6: opening <a> tag with cta link, 7: closing </a> tag, 8: discount percentage */
				__(
					'%1$sYou\'ve been using %2$s%4$s%3$s for 7 days now and we appreciate your loyalty! We also want to make sure you\'re getting the most out of our product. That\'s why we\'re offering you a special deal - upgrade to %2$s%5$s%3$s in the next 5 days and receive a discount of %2$sup to %8$s%%%3$s. %6$sUpgrade now%7$s and unlock all the amazing features of %2$s%5$s%3$s!',
					'feedzy-rss-feeds'
				),
				'<p>',
				'<b>',
				'</b>',
				'{product}',
				'{pro_product}',
				'<a href="{cta_link}" target="_blank">',
				'</a>',
				'55'
			);
		}
	);
	add_filter(
		'feedzy_rss_feeds_feedback_review_button_do',
		function () {
			return __( 'Upgrade Now!', 'feedzy-rss-feeds' );
		}
	);
	add_filter(
		'feedzy_rss_feeds_feedback_review_button_cancel',
		function () {
			return __( 'No, thanks.', 'feedzy-rss-feeds' );
		}
	);
	define( 'FEEDZY_SURVEY_PRO', 'https://forms.gle/FZXhL3D48KJUhb7q9' );
	define( 'FEEDZY_SURVEY_FREE', 'https://forms.gle/yQUGSrKEa7XJTGLx8' );
}

/**
 * Registers with the SDK.
 * 
 * @param string[] $products The loaded products base file.
 * 
 * @return string[] The loaded products base file.
 *
 * @since    1.0.0
 */
function feedzy_register_sdk( $products ) {
	$products[] = FEEDZY_BASEFILE;
	return $products;
}

/**
 * Registers with the parrot plugin
 * 
 * @param string[] $plugins The plugins name.
 * 
 * @return string[] The plugins name.
 *
 * @since    1.0.0
 */
function feedzy_register_parrot( $plugins ) {
	$plugins[] = FEEDZY_NAME;
	return $plugins;
}

spl_autoload_register( 'feedzy_rss_feeds_autoload' );
run_feedzy_rss_feeds();


if ( FEEDZY_LOCAL_DEBUG ) {
	add_action( 'themeisle_log_event', 'feedzy_themeisle_log_event', 10, 5 );

	/**
	 * Redirect themeisle_log_event to error log.
	 *
	 * @param string $name Event name.
	 * @param string $msg  Error message.
	 * @param string $type Error type.
	 * @param string $file File where the event occurred.
	 * @param int    $line Line number where the event occurred.
	 * 
	 * @deprecated 5.1.0 Use Feedzy_Rss_Feeds_Log instead.
	 */
	function feedzy_themeisle_log_event( $name, $msg, $type, $file, $line ) {
		if ( FEEDZY_NAME === $name ) {
			error_log( sprintf( '%s (%s:%d): %s', $type, $file, $line, $msg ) );
		}
	}
}

add_filter(
	'feedzy_rss_feeds_float_widget_metadata',
	function () {
		return array(
			'nice_name'          => 'Feedzy',
			'logo'               => FEEDZY_ABSURL . 'img/feedzy.svg',
			'primary_color'      => '#4268CF',
			'pages'              => array( 'feedzy_imports', 'edit-feedzy_imports', 'edit-feedzy_categories', 'feedzy_page_feedzy-settings', 'feedzy_page_feedzy-support', 'feedzy_page_feedzy-integration' ),
			'has_upgrade_menu'   => ! feedzy_is_pro(),
			'upgrade_link'       => tsdk_translate_link( tsdk_utmify( FEEDZY_UPSELL_LINK, 'floatWidget' ) ),
			'documentation_link' => tsdk_translate_link( tsdk_utmify( 'https://docs.themeisle.com/collection/1569-feedzy-rss-feeds', 'floatWidget' ) ),
			'wizard_link'        => ! feedzy_is_pro() && ! empty( get_option( 'feedzy_fresh_install', false ) ) ? admin_url( 'admin.php?page=feedzy-setup-wizard&tab#step-1' ) : '',
		);
	}
);

add_filter(
	'themeisle_sdk_labels',
	function ( $labels ) {
		if ( isset( $labels['float_widget'] ) ) {
			$labels['float_widget'] = array_merge(
				$labels['float_widget'],
				array(
					/* translators: %s: Product name */
					'button' => esc_html__( 'Toggle Help Widget for %s', 'feedzy-rss-feeds' ),
					'panel'  => array(
						/* translators: %s: Product name */
						'greeting' => esc_html__( 'Thank you for using %s', 'feedzy-rss-feeds' ),
						'title'    => esc_html__( 'How can we help you?', 'feedzy-rss-feeds' ),
						'close'    => esc_html__( 'Close Toggle Help Widget', 'feedzy-rss-feeds' ),
					),
					'links'  => array(
						'documentation'   => esc_html__( 'Documentation', 'feedzy-rss-feeds' ),
						'support'         => esc_html__( 'Get Support', 'feedzy-rss-feeds' ),
						'wizard'          => esc_html__( 'Run Setup Wizard', 'feedzy-rss-feeds' ),
						'upgrade'         => esc_html__( 'Upgrade to Pro', 'feedzy-rss-feeds' ),
						'feature_request' => esc_html__( 'Suggest a Feature', 'feedzy-rss-feeds' ),
						'rate'            => esc_html__( 'Rate Us', 'feedzy-rss-feeds' ),
					),
				)
			);
		}

		if ( isset( $labels['about_us'] ) ) {
			$labels['about_us'] = array_merge(
				$labels['about_us'],
				array(
					'title'            => __( 'About Us', 'feedzy-rss-feeds' ),
					'heroHeader'       => __( 'Our Story', 'feedzy-rss-feeds' ),
					'heroTextFirst'    => __( 'Themeisle was founded in 2012 by a group of passionate developers who wanted to create beautiful and functional WordPress themes and plugins. Since then, we have grown into a team of over 20 dedicated professionals who are committed to delivering the best possible products to our customers.', 'feedzy-rss-feeds' ),
					'heroTextSecond'   => __( 'At Themeisle, we offer a wide range of WordPress themes and plugins that are designed to meet the needs of both beginners and advanced users. Our products are feature-rich, easy to use, and are designed to help you create beautiful and functional websites.', 'feedzy-rss-feeds' ),
					'teamImageCaption' => __( 'Our team in WCEU2022 in Portugal', 'feedzy-rss-feeds' ),
					'newsHeading'      => __( 'Stay connected for news & updates!', 'feedzy-rss-feeds' ),
					'emailPlaceholder' => __( 'Your email address', 'feedzy-rss-feeds' ),
					'signMeUp'         => __( 'Sign me up', 'feedzy-rss-feeds' ),
					'installNow'       => __( 'Install Now', 'feedzy-rss-feeds' ),
					'activate'         => __( 'Activate', 'feedzy-rss-feeds' ),
					'learnMore'        => __( 'Learn More', 'feedzy-rss-feeds' ),
					'installed'        => __( 'Installed', 'feedzy-rss-feeds' ),
					'notInstalled'     => __( 'Not Installed', 'feedzy-rss-feeds' ),
					'active'           => __( 'Active', 'feedzy-rss-feeds' ),
				)
			);
		}

		return $labels;
	}
);