Files
szkoleniauryzaj.pl/wp-content/plugins/youtube-feed-pro/inc/Services/Admin/Settings/AboutPage.php
2026-04-26 23:47:49 +02:00

340 lines
18 KiB
PHP

<?php
namespace SmashBalloon\YouTubeFeed\Services\Admin\Settings;
use SmashBalloon\YouTubeFeed\Helpers\Util;
class AboutPage extends BaseSettingPage {
protected $menu_slug = 'about';
protected $menu_title = 'About Us';
protected $page_title = 'About Us';
protected $has_menu = true;
protected $template_file = 'settings.index';
protected $has_assets = true;
protected $menu_position = 4;
protected $menu_position_free_version = 4;
public function register() {
parent::register();
add_filter( 'sby_localized_settings', [ $this, 'filter_settings_object' ] );
add_action( 'wp_ajax_sby_install_addon', [ $this, 'ajax_install_addon' ] );
add_action( 'wp_ajax_sby_activate_addon', [ $this, 'ajax_activate_addon' ] );
}
public function ajax_activate_addon() {
Util::ajaxPreflightChecks();
// Check for permissions.
if ( ! current_user_can( 'activate_plugins' ) ) {
wp_send_json_error();
}
if ( isset( $_POST['plugin'] ) ) {
$type = 'addon';
if ( ! empty( $_POST['type'] ) ) {
$type = sanitize_key( $_POST['type'] );
}
$activate = activate_plugins( preg_replace( '/[^a-z-_\/]/', '', wp_unslash( str_replace( '.php', '', $_POST['plugin'] ) ) ) . '.php' );
if ( ! is_wp_error( $activate ) ) {
if ( 'plugin' === $type ) {
wp_send_json_success( esc_html__( 'Plugin activated.', 'feeds-for-youtube' ) );
} else {
wp_send_json_success( esc_html__( 'Addon activated.', 'feeds-for-youtube' ) );
}
}
}
wp_send_json_error( esc_html__( 'Could not activate addon. Please activate from the Plugins page.', 'feeds-for-youtube' ) );
}
public function ajax_install_addon() {
// Run a security check.
Util::ajaxPreflightChecks();
// Check for permissions.
if ( ! current_user_can( 'install_plugins' ) ) {
wp_send_json_error();
}
$error = esc_html__( 'Could not install addon. Please download from wpforms.com and install manually.', 'feeds-for-youtube' );
if ( empty( $_POST['plugin'] ) ) {
wp_send_json_error( $error );
}
// Only install plugins from the .org repo
if ( strpos( $_POST['plugin'], 'https://downloads.wordpress.org/plugin/' ) !== 0 ) {
wp_send_json_error( $error );
}
// Set the current screen to avoid undefined notices.
set_current_screen( 'youtube-feed-about' );
// Prepare variables.
$url = esc_url_raw(
add_query_arg(
array(
'page' => 'youtube-feed-about',
),
admin_url( 'admin.php' )
)
);
$creds = request_filesystem_credentials( $url, '', false, false, null );
// Check for file system permissions.
if ( false === $creds ) {
wp_send_json_error( $error );
}
if ( ! WP_Filesystem( $creds ) ) {
wp_send_json_error( $error );
}
/*
* We do not need any extra credentials if we have gotten this far, so let's install the plugin.
*/
// Do not allow WordPress to search/download translations, as this will break JS output.
remove_action( 'upgrader_process_complete', array( 'Language_Pack_Upgrader', 'async_upgrade' ), 20 );
if(!class_exists("Plugin_Upgrader")) {
include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
include_once ABSPATH . 'wp-admin/includes/class-plugin-upgrader.php';
include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader-skin.php';
}
// Create the plugin upgrader with our custom skin.
$installer = new \Plugin_Upgrader( new \WP_Upgrader_Skin() );
// Error check.
if ( empty( $_POST['plugin'] ) ) {
wp_send_json_error( $error );
}
$installer->install( esc_url_raw( wp_unslash( $_POST['plugin'] ) ) );
// Flush the cache and return the newly installed plugin basename.
wp_cache_flush();
$plugin_basename = $installer->plugin_info();
if ( $plugin_basename ) {
$type = 'addon';
if ( ! empty( $_POST['type'] ) ) {
$type = sanitize_key( $_POST['type'] );
}
// Activate the plugin silently.
$activated = activate_plugin( $plugin_basename );
if ( ! is_wp_error( $activated ) ) {
wp_send_json_success(
array(
'msg' => 'plugin' === $type ? esc_html__( 'Plugin installed & activated.', 'feeds-for-youtube' ) : esc_html__( 'Addon installed & activated.', 'feeds-for-youtube' ),
'is_activated' => true,
'basename' => $plugin_basename,
)
);
} else {
wp_send_json_success(
array(
'msg' => 'plugin' === $type ? esc_html__( 'Plugin installed.', 'feeds-for-youtube' ) : esc_html__( 'Addon installed.', 'feeds-for-youtube' ),
'is_activated' => false,
'basename' => $plugin_basename,
)
);
}
}
wp_send_json_error( $error );
}
public function filter_settings_object( $settings ) {
$sb_other_plugins = sby_get_active_plugins_info();
$installed_plugins = $sb_other_plugins['installed_plugins'];
$license_key = get_option( 'sby_license_key', null );
$settings['pluginInfo'] = [
"plugins" => [
'facebook' => array(
'plugin' => $sb_other_plugins['facebook_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/custom-facebook-feed.zip',
'title' => __( 'Facebook Feeds', 'feeds-for-youtube' ),
'description' => __( 'Get in depth analytics on all your social feeds in a single place', 'feeds-for-youtube' ),
'icon' => 'fb-icon.svg',
'installed' => isset( $sb_other_plugins['is_facebook_installed'] ) && $sb_other_plugins['is_facebook_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['facebook_plugin'] ),
),
'instagram' => array(
'plugin' => $sb_other_plugins['instagram_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/instagram-feed.zip',
'title' => __( 'Instagram Feeds', 'feeds-for-youtube' ),
'description' => __( 'Display customizable Instagram feeds in WordPress', 'feeds-for-youtube' ),
'icon' => 'insta-icon.svg',
'installed' => isset( $sb_other_plugins['is_instagram_installed'] ) && $sb_other_plugins['is_instagram_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['instagram_plugin'] ),
),
'twitter' => array(
'plugin' => $sb_other_plugins['twitter_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/custom-twitter-feeds.zip',
'title' => __( 'Twitter Feeds', 'feeds-for-youtube' ),
'description' => __( 'Display customizable Twitter feeds in WordPress', 'feeds-for-youtube' ),
'icon' => 'twitter-icon.svg',
'installed' => isset( $sb_other_plugins['is_twitter_installed'] ) && $sb_other_plugins['is_twitter_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['twitter_plugin'] ),
),
'youtube' => array(
'plugin' => $sb_other_plugins['youtube_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/feeds-for-youtube.zip',
'title' => __( 'YouTube Feeds', 'feeds-for-youtube' ),
'description' => __( 'Display customizable YouTube feeds in WordPress', 'feeds-for-youtube' ),
'icon' => 'youtube-icon.svg',
'installed' => isset( $sb_other_plugins['is_youtube_installed'] ) && $sb_other_plugins['is_youtube_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['youtube_plugin'] ),
),
'tiktok' => array(
'plugin' => $sb_other_plugins['tiktok_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/feeds-for-tiktok.zip',
'title' => __( 'Tiktok Feeds', 'feeds-for-youtube' ),
'description' => __( 'Display customizable TikTok feeds in WordPress', 'feeds-for-youtube' ),
'icon' => 'tiktok-icon.svg',
'installed' => isset( $sb_other_plugins['is_tiktok_installed'] ) && $sb_other_plugins['is_tiktok_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['tiktok_plugin'] ),
),
],
'social_wall' => array(
'plugin' => 'social-wall/social-wall.php',
'title' => __( 'Social Wall', 'feeds-for-youtube' ),
'description' => __( 'Connect all social feeds in a single feed with Social Wall', 'feeds-for-youtube' ),
'graphic' => 'social-wall-graphic.png',
'icon' => 'reviews-icon.svg',
'permalink' => sprintf( 'https://smashballoon.com/social-wall/demo?edd_license_key=%s&upgrade=true&utm_campaign='. sby_utm_campaign() .'&utm_source=about&utm_medium=social-wall', $license_key ),
'permalink_text' => __( 'See Demo', 'feeds-for-youtube' ),
'installed' => isset( $sb_other_plugins['is_social_wall_installed'] ) && $sb_other_plugins['is_social_wall_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['social_wall_plugin'] ),
),
'reviews' => array(
'plugin' => $sb_other_plugins['reviews_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/reviews-feed.zip',
'title' => __( 'Reviews Feeds', 'feeds-for-youtube' ),
'description' => __( 'Display customizable Reviews feeds in WordPress', 'feeds-for-youtube' ),
'icon' => 'reviews-icon.svg',
'installed' => isset( $sb_other_plugins['is_reviews_installed'] ) && $sb_other_plugins['is_reviews_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['reviews_plugin'] ),
),
'click_social' => array(
'plugin' => $sb_other_plugins['click_social_plugin'],
'download_plugin' => 'https://downloads.wordpress.org/plugin/click-social.zip',
'title' => __( 'ClickSocial', 'feeds-for-youtube' ),
'description' => __( 'Effortlessly manage your social media presence directly within WordPress. ', 'feeds-for-youtube' ),
'icon' => 'click-social-icon.svg',
'installed' => isset( $sb_other_plugins['is_click_social_installed'] ) && $sb_other_plugins['is_click_social_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['click_social_plugin'] ),
),
'feed_analytics' => array(
'plugin' => $sb_other_plugins['click_social_plugin'],
'download_plugin' => '',
'title' => __( 'Feed Analytics', 'feeds-for-youtube' ),
'description' => __( 'Get in depth analytics on all your social feeds in a single place', 'feeds-for-youtube' ),
'icon' => 'feed-analytics-icon.svg',
'permalink' => sprintf( 'https://smashballoon.com/social-wall/demo?edd_license_key=%s&upgrade=true&utm_campaign='. sby_utm_campaign() .'&utm_source=about&utm_medium=social-wall', $license_key ),
'permalink_text' => __( 'See Demo', 'feeds-for-youtube' ),
'installed' => isset( $sb_other_plugins['is_click_social_installed'] ) && $sb_other_plugins['is_click_social_installed'] == true,
'activated' => is_plugin_active( $sb_other_plugins['click_social_plugin'] ),
),
'recommendedPlugins' => array(
'aioseo' => array(
'plugin' => 'all-in-one-seo-pack/all_in_one_seo_pack.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/all-in-one-seo-pack.zip',
'title' => __('All in One SEO Pack', 'feeds-for-youtube'),
'description' => __('The original WordPress SEO plugin and toolkit that improves your website\'s search rankings. Comes with all the SEO features like Local SEO, WooCommerce SEO, sitemaps, SEO optimizer, schema, and more.', 'feeds-for-youtube'),
'icon' => 'plugin-seo.png',
'installed' => isset( $installed_plugins['all-in-one-seo-pack/all_in_one_seo_pack.php'] ) ? true : false,
'activated' => is_plugin_active('all-in-one-seo-pack/all_in_one_seo_pack.php'),
'installs_number' => __('3 Million+ Installs', 'feeds-for-youtube')
),
'wpforms' => array(
'plugin' => 'wpforms-lite/wpforms.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/wpforms-lite.zip',
'title' => __('WPForms', 'feeds-for-youtube'),
'description' => __('The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 900+ form templates. Trusted by over 6 million websites as the best forms plugin.', 'feeds-for-youtube'),
'icon' => 'plugin-wpforms.png',
'installed' => isset( $installed_plugins['wpforms-lite/wpforms.php'] ) ? true : false,
'activated' => is_plugin_active('wpforms-lite/wpforms.php'),
'installs_number' => __('6 Million+ Installs', 'feeds-for-youtube')
),
'monsterinsights' => array(
'plugin' => 'google-analytics-for-wordpress/googleanalytics.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/google-analytics-for-wordpress.zip',
'title' => __('MonsterInsights', 'feeds-for-youtube'),
'description' => __('The leading WordPress analytics plugin that shows you how people find and use your website, so you can make data driven decisions to grow your business. Properly set up Google Analytics without writing code.', 'feeds-for-youtube'),
'icon' => 'plugin-mi.png',
'installed' => isset( $installed_plugins['google-analytics-for-wordpress/googleanalytics.php'] ) ? true : false,
'activated' => is_plugin_active('google-analytics-for-wordpress/googleanalytics.php'),
'installs_number' => __('3 Million+ Installs', 'feeds-for-youtube')
),
'optinmonster' => array(
'plugin' => 'optinmonster/optin-monster-wp-api.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/optinmonster.zip',
'title' => __('OptinMonster', 'feeds-for-youtube'),
'description' => __('Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization.', 'feeds-for-youtube'),
'icon' => 'plugin-om.png',
'installed' => isset( $installed_plugins['optinmonster/optin-monster-wp-api.php'] ) ? true : false,
'activated' => is_plugin_active('optinmonster/optin-monster-wp-api.php'),
'installs_number' => __('1 Million+ Installs', 'feeds-for-youtube')
),
'wp_mail_smtp' => array(
'plugin' => 'wp-mail-smtp/wp_mail_smtp.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/wp-mail-smtp.zip',
'title' => __('WP Mail SMTP', 'feeds-for-youtube'),
'description' => __('Improve your WordPress email deliverability and make sure that your website emails reach user\'s inbox with the #1 SMTP plugin for WordPress. Over 3 million websites use it to fix WordPress email issues.', 'feeds-for-youtube'),
'icon' => 'plugin-smtp.png',
'installed' => isset( $installed_plugins['wp-mail-smtp/wp_mail_smtp.php'] ) ? true : false,
'activated' => is_plugin_active('wp-mail-smtp/wp_mail_smtp.php'),
'installs_number' => __('3 Million+ Installs', 'feeds-for-youtube')
),
'rafflepress' => array(
'plugin' => 'rafflepress/rafflepress.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/rafflepress.zip',
'title' => __('RafflePress', 'feeds-for-youtube'),
'description' => __('Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress.', 'feeds-for-youtube'),
'icon' => 'plugin-rp.png',
'installed' => isset( $installed_plugins['rafflepress/rafflepress.php'] ) ? true : false,
'activated' => is_plugin_active('rafflepress/rafflepress.php'),
'installs_number' => __('20 Thousand+ Installs', 'feeds-for-youtube')
),
'seedprod' => array(
'plugin' => 'coming-soon/coming-soon.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/coming-soon.zip',
'title' => __('SeedProd Website Builder', 'feeds-for-youtube'),
'description' => __('The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect a CRM, collect subscribers, and grow an audience. Trusted by 1 million sites.', 'feeds-for-youtube'),
'icon' => 'plugin-seedprod.png',
'installed' => isset( $installed_plugins['coming-soon/coming-soon.php'] ) ? true : false,
'activated' => is_plugin_active('coming-soon/coming-soon.php'),
'installs_number' => __('800 Thousand+ Installs', 'feeds-for-youtube')
),
'pushengage' => array(
'plugin' => 'pushengage/main.php',
'download_plugin' => 'https://downloads.wordpress.org/plugin/pushengage.zip',
'title' => __('PushEngage Web Push Notifications', 'feeds-for-youtube'),
'description' => __('Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 15 billion notifications each month.', 'feeds-for-youtube'),
'icon' => 'plugin-push.png',
'installed' => isset( $installed_plugins['pushengage/main.php'] ) ? true : false,
'activated' => is_plugin_active('pushengage/main.php'),
'installs_number' => __('10 Thousand+ Installs', 'feeds-for-youtube')
)
),
];
return $settings;
}
}