PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
instagram-feed
/
admin
<?php /** * The Settings Page * * @since 6.0 */ namespace InstagramFeed\Admin; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } use InstagramFeed\SBI_View; use InstagramFeed\Builder\SBI_Db; use InstagramFeed\Builder\SBI_Feed_Builder; class SBI_Support { /** * Admin menu page slug. * * @since 6.0 * * @var string */ const SLUG = 'sbi-support'; /** * Initializing the class * * @since 6.0 */ public function __construct() { $this->init(); } /** * Determining if the user is viewing the our page, if so, party on. * * @since 6.0 */ public function init() { if ( ! is_admin() ) { return; } add_action( 'admin_menu', array( $this, 'register_menu' ) ); } /** * Register Menu. * * @since 6.0 */ public function register_menu() { $cap = current_user_can( 'manage_instagram_feed_options' ) ? 'manage_instagram_feed_options' : 'manage_options'; $cap = apply_filters( 'sbi_settings_pages_capability', $cap ); $support_page = add_submenu_page( 'sb-instagram-feed', __( 'Support', 'instagram-feed' ), __( 'Support', 'instagram-feed' ), $cap, self::SLUG, array( $this, 'support_page' ), 4 ); add_action( 'load-' . $support_page, array( $this, 'support_page_enqueue_assets' ) ); } /** * Enqueue Extension CSS & Script. * * Loads only for Extension page * * @since 6.0 */ public function support_page_enqueue_assets() { if ( ! get_current_screen() ) { return; } $screen = get_current_screen(); if ( strpos( $screen->id, 'sbi-support' ) === false) { return; } wp_enqueue_style( 'sbi-fira-code-font', 'https://fonts.googleapis.com/css2?family=Fira+Code&display=swap', false, SBIVER ); wp_enqueue_style( 'support-style', SBI_PLUGIN_URL . 'admin/assets/css/support.css', false, SBIVER ); wp_enqueue_script( 'vue-main', 'https://cdn.jsdelivr.net/npm/vue@2.6.12', null, '2.6.12', true ); wp_enqueue_script( 'support-app', SBI_PLUGIN_URL . 'admin/assets/js/support.js', null, SBIVER, true ); $sbi_support = $this->page_data(); wp_localize_script( 'support-app', 'sbi_support', $sbi_support ); } /** * Page Data to use in front end * * @since 6.0 * * @return array */ public function page_data() { $exported_feeds = SBI_Db::feeds_query(); $feeds = array(); foreach ( $exported_feeds as $feed_id => $feed ) { $feeds[] = array( 'id' => $feed['id'], 'name' => $feed['feed_name'], ); } $return = array( 'admin_url' => admin_url(), 'ajax_handler' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'sbi-admin' ), 'links' => \InstagramFeed\Builder\SBI_Feed_Builder::get_links_with_utm(), 'supportPageUrl' => admin_url( 'admin.php?page=sbi-support' ), 'siteSearchUrl' => 'https://smashballoon.com/search/', 'system_info' => $this->get_system_info(), 'system_info_n' => str_replace( '</br>', "\n", $this->get_system_info() ), 'feeds' => $feeds, 'supportUrl' => $this->get_support_url(), 'svgIcons' => SBI_Feed_Builder::builder_svg_icons(), 'socialWallLinks' => \InstagramFeed\Builder\SBI_Feed_Builder::get_social_wall_links(), 'socialWallActivated' => is_plugin_active( 'social-wall/social-wall.php' ), 'genericText' => array( 'help' => __( 'Help', 'instagram-feed' ), 'title' => __( 'Support', 'instagram-feed' ), 'gettingStarted' => __( 'Getting Started', 'instagram-feed' ), 'someHelpful' => __( 'Some helpful resources to get you started', 'instagram-feed' ), 'docsN' => __( 'Docs & Troubleshooting', 'instagram-feed' ), 'runInto' => __( 'Run into an issue? Check out our help docs.', 'instagram-feed' ), 'additionalR' => __( 'Additional Resources', 'instagram-feed' ), 'toHelp' => __( 'To help you get the most out of the plugin', 'instagram-feed' ), 'needMore' => __( 'Need more support? We’re here to help.', 'instagram-feed' ), 'ourFast' => __( 'Our fast and friendly support team is always happy to help!', 'instagram-feed' ), 'systemInfo' => __( 'System Info', 'instagram-feed' ), 'exportSettings' => __( 'Export Settings', 'instagram-feed' ), 'shareYour' => __( 'Share your plugin settings easily with Support', 'instagram-feed' ), 'copiedToClipboard' => __( 'Copied to clipboard', 'instagram-feed' ), ), 'buttons' => array( 'searchDoc' => __( 'Search Documentation', 'instagram-feed' ), 'moreHelp' => __( 'More help on Getting started', 'instagram-feed' ), 'viewDoc' => __( 'View Documentation', 'instagram-feed' ), 'viewBlog' => __( 'View Blog', 'instagram-feed' ), 'submitTicket' => __( 'Submit a Support Ticket', 'instagram-feed' ), 'copied' => __( 'Copied', 'instagram-feed' ), 'copy' => __( 'Copy', 'instagram-feed' ), 'export' => __( 'Export', 'instagram-feed' ), 'expand' => __( 'Expand', 'instagram-feed' ), 'collapse' => __( 'Collapse', 'instagram-feed' ), ), 'icons' => array( 'rocket' => SBI_PLUGIN_URL . 'admin/assets/img/rocket-icon.svg', 'book' => SBI_PLUGIN_URL . 'admin/assets/img/book-icon.svg', 'save' => SBI_PLUGIN_URL . 'admin/assets/img/save-plus-icon.svg', 'magnify' => '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.91667 0.5C7.35326 0.5 8.73101 1.07068 9.74683 2.08651C10.7627 3.10233 11.3333 4.48008 11.3333 5.91667C11.3333 7.25833 10.8417 8.49167 10.0333 9.44167L10.2583 9.66667H10.9167L15.0833 13.8333L13.8333 15.0833L9.66667 10.9167V10.2583L9.44167 10.0333C8.45879 10.8723 7.20892 11.3333 5.91667 11.3333C4.48008 11.3333 3.10233 10.7627 2.08651 9.74683C1.07068 8.73101 0.5 7.35326 0.5 5.91667C0.5 4.48008 1.07068 3.10233 2.08651 2.08651C3.10233 1.07068 4.48008 0.5 5.91667 0.5ZM5.91667 2.16667C3.83333 2.16667 2.16667 3.83333 2.16667 5.91667C2.16667 8 3.83333 9.66667 5.91667 9.66667C8 9.66667 9.66667 8 9.66667 5.91667C9.66667 3.83333 8 2.16667 5.91667 2.16667Z" fill="#141B38"/></svg>', 'rightAngle' => '<svg width="7" height="11" viewBox="0 0 5 8" fill="#000" xmlns="http://www.w3.org/2000/svg"><path d="M1.00006 0L0.0600586 0.94L3.11339 4L0.0600586 7.06L1.00006 8L5.00006 4L1.00006 0Z" fill="#000"/></svg>', 'linkIcon' => '<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.166626 10.6583L8.99163 1.83329H3.49996V0.166626H11.8333V8.49996H10.1666V3.00829L1.34163 11.8333L0.166626 10.6583Z" fill="#141B38"/></svg>', 'plusIcon' => '<svg width="13" height="12" viewBox="0 0 13 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.0832 6.83317H7.08317V11.8332H5.4165V6.83317H0.416504V5.1665H5.4165V0.166504H7.08317V5.1665H12.0832V6.83317Z" fill="white"/></>', 'loaderSVG' => '<svg version="1.1" id="loader-1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="20px" height="20px" viewBox="0 0 50 50" style="enable-background:new 0 0 50 50;" xml:space="preserve"><path fill="#fff" d="M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z"><animateTransform attributeType="xml" attributeName="transform" type="rotate" from="0 25 25" to="360 25 25" dur="0.6s" repeatCount="indefinite"/></path></svg>', 'checkmarkSVG' => '<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M5.13112 6.88917L11.4951 0.525204L12.9093 1.93942L5.13112 9.71759L0.888482 5.47495L2.3027 4.06074L5.13112 6.88917Z" fill="#8C8F9A"/></svg>', 'forum' => '<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19.8335 14V3.50004C19.8335 3.19062 19.7106 2.89388 19.4918 2.67508C19.273 2.45629 18.9762 2.33337 18.6668 2.33337H3.50016C3.19074 2.33337 2.894 2.45629 2.6752 2.67508C2.45641 2.89388 2.3335 3.19062 2.3335 3.50004V19.8334L7.00016 15.1667H18.6668C18.9762 15.1667 19.273 15.0438 19.4918 14.825C19.7106 14.6062 19.8335 14.3095 19.8335 14ZM24.5002 7.00004H22.1668V17.5H7.00016V19.8334C7.00016 20.1428 7.12308 20.4395 7.34187 20.6583C7.56066 20.8771 7.85741 21 8.16683 21H21.0002L25.6668 25.6667V8.16671C25.6668 7.85729 25.5439 7.56054 25.3251 7.34175C25.1063 7.12296 24.8096 7.00004 24.5002 7.00004Z" fill="#141B38"/></svg>', 'copy' => '<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 1.33334H6C5.26667 1.33334 4.66667 1.93334 4.66667 2.66667V10.6667C4.66667 11.4 5.26667 12 6 12H12C12.7333 12 13.3333 11.4 13.3333 10.6667V2.66667C13.3333 1.93334 12.7333 1.33334 12 1.33334ZM12 10.6667H6V2.66667H12V10.6667ZM2 10V8.66667H3.33333V10H2ZM2 6.33334H3.33333V7.66667H2V6.33334ZM6.66667 13.3333H8V14.6667H6.66667V13.3333ZM2 12.3333V11H3.33333V12.3333H2ZM3.33333 14.6667C2.6 14.6667 2 14.0667 2 13.3333H3.33333V14.6667ZM5.66667 14.6667H4.33333V13.3333H5.66667V14.6667ZM9 14.6667V13.3333H10.3333C10.3333 14.0667 9.73333 14.6667 9 14.6667ZM3.33333 4V5.33334H2C2 4.6 2.6 4 3.33333 4Z" fill="#141B38"/></svg>', 'downAngle' => '<svg width="8" height="6" viewBox="0 0 8 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.94 0.226685L4 3.28002L7.06 0.226685L8 1.16668L4 5.16668L0 1.16668L0.94 0.226685Z" fill="#141B38"/></svg>', 'exportSVG' => '<svg class="btn-icon" width="12" height="15" viewBox="0 0 12 15" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.166748 14.6667H11.8334V13H0.166748V14.6667ZM11.8334 5.5H8.50008V0.5H3.50008V5.5H0.166748L6.00008 11.3333L11.8334 5.5Z" fill="#141B38"/></svg>', ), 'images' => array( 'supportMembers' => SBI_PLUGIN_URL . 'admin/assets/img/support-members.png', ), 'articles' => array( 'gettingStarted' => array( array( 'title' => __( 'Creating your first Instagram feed', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/setting-up-the-instagram-feed-pro-wordpress-plugin/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Creating your first Instagram feed', ), array( 'title' => __( 'Instagram Business Profiles (required for Hashtag and Tagged feeds)', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/instagram-business-profiles/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Instagram Business Profiles', ), array( 'title' => __( 'Multiple User Accounts in One Feed', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/displaying-photos-multiple-ids-hashtags-feed/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Multiple Users', ), ), 'docs' => array( array( 'title' => __( 'Displaying Instagram Hashtag Feeds', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/displaying-an-instagram-hashtag-feed-on-your-website/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Displaying an Instagram Hashtag Feed', ), array( 'title' => __( 'How to Resolve Error Messages', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/instagram-api-error-message-reference/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Instagram resolving error messages', ), array( 'title' => __( 'My Feed Stopped Working or is Empty', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/my-photos-wont-load/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=My feed stopped working', ), ), 'resources' => array( array( 'title' => __( 'Differences Between an Instagram Personal and Business Account', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/differences-between-an-instagram-personal-and-business-account/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Differences between a business and personal account', ), array( 'title' => __( 'Display Posts With a Specific Hashtag From a Specific User Account', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/can-display-photos-specific-hashtag-specific-user-id/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Display a specific hashtag from a specific account', ), array( 'title' => __( 'Reauthorizing our Instagram/Facebook App', 'instagram-feed' ), 'link' => 'https://smashballoon.com/doc/reauthorizing-our-instagram-facebook-app/?utm_campaign=instagram-free&utm_source=support&utm_medium=docs&utm_content=Reauthorizing the Instagram or FB app', ), ), ), ); return $return; } /** * Get System Info * * @since 6.0 */ public function get_system_info() { $output = ''; // Build the output strings $output .= self::get_site_n_server_info(); $output .= self::get_active_plugins_info(); $output .= self::get_global_settings_info(); $output .= self::get_feeds_settings_info(); $output .= self::get_sources_info(); $output .= self::get_image_resizing_info(); $output .= self::get_posts_table_info(); $output .= self::get_cron_report(); $output .= self::get_errors_info(); $output .= self::get_action_logs_info(); $output .= self::get_oembeds_info(); return $output; } /** * Get Site and Server Info * * @since 6.0 * * @return string */ public static function get_site_n_server_info() { $allow_url_fopen = ini_get( 'allow_url_fopen' ) ? 'Yes' : 'No'; $php_curl = is_callable( 'curl_init' ) ? 'Yes' : 'No'; $php_json_decode = function_exists( 'json_decode' ) ? 'Yes' : 'No'; $php_ssl = in_array( 'https', stream_get_wrappers(), true ) ? 'Yes' : 'No'; $output = '## SITE/SERVER INFO: ##</br>'; $output .= 'Plugin Version:' . self::get_whitespace( 11 ) . esc_html( SBI_PLUGIN_NAME ) . '</br>'; $output .= 'Site URL:' . self::get_whitespace( 17 ) . esc_html( site_url() ) . '</br>'; $output .= 'Home URL:' . self::get_whitespace( 17 ) . esc_html( home_url() ) . '</br>'; $output .= 'WordPress Version:' . self::get_whitespace( 8 ) . esc_html( get_bloginfo( 'version' ) ) . '</br>'; $output .= 'PHP Version:' . self::get_whitespace( 14 ) . esc_html( PHP_VERSION ) . '</br>'; $output .= 'Web Server Info:' . self::get_whitespace( 10 ) . esc_html( $_SERVER['SERVER_SOFTWARE'] ) . '</br>'; $output .= 'PHP allow_url_fopen:' . self::get_whitespace( 6 ) . esc_html( $allow_url_fopen ) . '</br>'; $output .= 'PHP cURL:' . self::get_whitespace( 17 ) . esc_html( $php_curl ) . '</br>'; $output .= 'JSON:' . self::get_whitespace( 21 ) . esc_html( $php_json_decode ) . '</br>'; $output .= 'SSL Stream:' . self::get_whitespace( 15 ) . esc_html( $php_ssl ) . '</br>'; $output .= '</br>'; return $output; } /** * Get Active Plugins * * @since 6.0 * * @return string */ public static function get_active_plugins_info() { $plugins = get_plugins(); $active_plugins = get_option( 'active_plugins' ); $output = '## ACTIVE PLUGINS: ## </br>'; foreach ( $plugins as $plugin_path => $plugin ) { if ( in_array( $plugin_path, $active_plugins, true ) ) { $output .= esc_html( $plugin['Name'] ) . ': ' . esc_html( $plugin['Version'] ) . '</br>'; } } $output .= '</br>'; return $output; } /** * Get Global Settings * * @since 6.0 * * @return string */ public static function get_global_settings_info() { $output = '## GLOBAL SETTINGS: ## </br>'; $sbi_license_key = get_option( 'sbi_license_key' ); $sbi_license_data = get_option( 'sbi_license_data' ); $sbi_license_status = get_option( 'sbi_license_status' ); $sbi_settings = get_option( 'sb_instagram_settings', array() ); $usage_tracking = get_option( 'sbi_usage_tracking', array( 'last_send' => 0, 'enabled' => \sbi_is_pro_version(), ) ); $output .= 'License key: '; if ( $sbi_license_key ) { $output .= esc_html( $sbi_license_key ); } else { $output .= ' Not added'; } $output .= '</br>'; $output .= 'License status: '; if ( $sbi_license_status ) { $output .= $sbi_license_status; } else { $output .= ' Inactive'; } $output .= '</br>'; $output .= 'Preserve settings if plugin is removed: '; $output .= ( $sbi_settings['sb_instagram_preserve_settings'] ) ? 'Yes' : 'No'; $output .= '</br>'; $output .= 'Connected Accounts: '; $output .= 'Placeholder!'; $output .= '</br>'; $output .= 'Caching: '; if ( wp_next_scheduled( 'sbi_feed_update' ) ) { $time_format = get_option( 'time_format' ); if ( ! $time_format ) { $time_format = 'g:i a'; } // $schedule = wp_get_schedule( 'sbi_feed_update' ); if ( $schedule === '30mins' ) { $schedule = __( 'every 30 minutes', 'instagram-feed' ); } if ( $schedule === 'twicedaily' ) { $schedule = __( 'every 12 hours', 'instagram-feed' ); } $sbi_next_cron_event = wp_next_scheduled( 'sbi_feed_update' ); $output = __( 'Next check', 'instagram-feed' ) . ': ' . gmdate( $time_format, $sbi_next_cron_event + sbi_get_utc_offset() ) . ' (' . $schedule . ')'; } else { $output .= 'Nothing currently scheduled'; } $output .= '</br>'; $output .= 'GDPR: '; $output .= isset( $sbi_settings['gdpr'] ) ? $sbi_settings['gdpr'] : ' Not setup'; $output .= '</br>'; $output .= 'Custom CSS: '; $output .= isset( $sbi_settings['sb_instagram_custom_css'] ) && ! empty( $sbi_settings['sb_instagram_custom_css'] ) ? $sbi_settings['sb_instagram_custom_css'] : 'Empty'; $output .= '</br>'; $output .= 'Custom JS: '; $output .= isset( $sbi_settings['sb_instagram_custom_js'] ) && ! empty( $sbi_settings['sb_instagram_custom_js'] ) ? $sbi_settings['sb_instagram_custom_js'] : 'Empty'; $output .= '</br>'; $output .= 'Optimize Images: '; $output .= isset( $sbi_settings['sb_instagram_disable_resize'] ) && ! $sbi_settings['sb_instagram_disable_resize'] ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Usage Tracking: '; $output .= isset( $usage_tracking['enabled'] ) && $usage_tracking['enabled'] === true ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'AJAX theme loading fix: '; $output .= isset( $sbi_settings['sb_instagram_ajax_theme'] ) && $sbi_settings['sb_instagram_ajax_theme'] ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'AJAX Initial: '; $output .= isset( $sbi_settings['sb_ajax_initial'] ) && $sbi_settings['sb_ajax_initial'] === true ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Enqueue in Head: '; $output .= isset( $sbi_settings['enqueue_js_in_head'] ) && $sbi_settings['enqueue_js_in_head'] === true ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Enqueue in Shortcode: '; $output .= isset( $sbi_settings['enqueue_css_in_shortcode'] ) && $sbi_settings['enqueue_css_in_shortcode'] === true ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Enable JS Image: '; $output .= isset( $sbi_settings['disable_js_image_loading'] ) && $sbi_settings['disable_js_image_loading'] === false ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Admin Error Notice: '; $output .= isset( $sbi_settings['disable_admin_notice'] ) && $sbi_settings['disable_admin_notice'] === false ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Feed Issue Email Reports: '; $output .= isset( $sbi_settings['enable_email_report'] ) && $sbi_settings['enable_email_report'] === true ? 'Enabled' : 'Disabled'; $output .= '</br>'; $output .= 'Email notification: '; $output .= isset( $sbi_settings['email_notification'] ) && $sbi_settings['email_notification'] !== null ? ucfirst( $sbi_settings['email_notification'] ) : 'Off'; $output .= '</br>'; $output .= 'Email notification addresses: '; $output .= isset( $sbi_settings['email_notification_addresses'] ) && ! empty( $sbi_settings['email_notification_addresses'] ) ? sanitize_email( $sbi_settings['email_notification_addresses'] ) : 'Not available'; $output .= '</br>'; $output .= '</br>'; return $output; } /** * Get Feeds Settings * * @since 6.0 * * @return string */ public static function get_feeds_settings_info() { $output = '## FEEDS: ## </br>'; $feeds_list = SBI_Feed_Builder::get_feed_list(); $source_list = SBI_Feed_Builder::get_source_list(); $manager = new \SB_Instagram_Data_Manager(); $i = 0; foreach ( $feeds_list as $feed ) { $type = ! empty( $feed['settings']['type'] ) ? $feed['settings']['type'] : 'user'; if ( $i >= 25 ) { break; } $output .= $feed['feed_name']; if ( isset( $feed['settings'] ) ) { $output .= ' - ' . ucfirst( $type ); $output .= '</br>'; if ( ! empty( $feed['settings']['sources'] ) ) { foreach ( $feed['settings']['sources'] as $id => $source ) { $output .= esc_html( $source['username'] ); $output .= ' (' . esc_html( $id ) . ')'; $output .= '</br>'; $output .= esc_html( $manager->remote_encrypt( $source['access_token'] ) ); } } } $output .= '</br>'; if ( isset( $feed['location_summary'] ) && count( $feed['location_summary'] ) > 0 ) { $first_feed = $feed['location_summary'][0]; if ( ! empty( $first_feed['link'] ) ) { $output .= esc_html( $first_feed['link'] ) . '?sb_debug'; $output .= '</br>'; } } if ( $i < ( count( $feeds_list ) - 1 ) ) { $output .= '</br>'; } $i++; } $output .= '</br>'; return $output; } /** * Get Feeds Settings * * @since 6.0 * * @return string */ public static function get_sources_info() { $output = '## Sources: ## </br>'; $source_list = SBI_Feed_Builder::get_source_list(); $manager = new \SB_Instagram_Data_Manager(); foreach ( $source_list as $source ) { $output .= $source['account_id']; $output .= '</br>'; $output .= 'Type: ' . esc_html( $source['account_type'] ); $output .= '</br>'; $output .= 'Username: ' . esc_html( $source['username'] ); $output .= '</br>'; $output .= 'Error: ' . esc_html( $source['error'] ); $output .= '</br>'; $output .= esc_html( $manager->remote_encrypt( $source['access_token'] ) ); $output .= '</br>'; $output .= '</br>'; } $output .= '</br>'; return $output; } /** * Get Reports * * @since 6.0 * * @return string */ public static function get_cron_report() { $output = '## Cron Cache Report: ## </br>'; $cron_report = get_option( 'sbi_cron_report', array() ); if ( ! empty( $cron_report ) ) { $output .= 'Time Ran: ' . esc_html( $cron_report['notes']['time_ran'] ); $output .= "</br>"; $output .= 'Found Feeds: ' . esc_html( $cron_report['notes']['num_found_transients'] ); $output .= "</br>"; $output .= "</br>"; foreach ( $cron_report as $key => $value ) { if ( $key !== 'notes' ) { $output .= esc_html( $key ) . ':'; $output .= "</br>"; if ( ! empty( $value['last_retrieve'] ) ) { $output .= 'Last Retrieve: ' . esc_html( $value['last_retrieve'] ); $output .= "</br>"; } $output .= 'Did Update: ' . esc_html( $value['did_update'] ); $output .= "</br>"; $output .= "</br>"; } } } else { $output .= "</br>"; } $cron = _get_cron_array(); foreach ( $cron as $key => $data ) { $is_target = false; foreach ( $data as $key2 => $val ) { if ( strpos( $key2, 'sbi' ) !== false || strpos( $key2, 'sb_instagram' ) !== false ) { $is_target = true; $output .= esc_html( $key2 ); $output .= "</br>"; } } if ( $is_target ) { $output .= esc_html( date( 'Y-m-d H:i:s', $key ) ); $output .= "</br>"; $output .= esc_html( 'Next Scheduled: ' . round( ( (int) $key - time() ) / 60 ) . ' minutes' ); $output .= "</br>"; $output .= "</br>"; } } return $output; } /** * Get Image Resizing Info * * @since 6.0 * * @return string */ public static function get_image_resizing_info() { $output = '## IMAGE RESIZING: ##</br>'; $upload = wp_upload_dir(); $upload_dir = $upload['basedir']; $upload_dir = trailingslashit( $upload_dir ) . SBI_UPLOADS_NAME; if ( file_exists( $upload_dir ) ) { $output .= 'upload directory exists</br>'; } else { $created = wp_mkdir_p( $upload_dir ); if ( ! $created ) { $output .= 'cannot create upload directory'; } } $output .= '</br>'; return $output; } /** * Get Posts Table Info * * @since 6.0 * * @return string */ public static function get_posts_table_info() { $output = '## POSTS: ## </br>'; global $wpdb; $table_name = $wpdb->prefix . SBI_INSTAGRAM_POSTS_TYPE; $feeds_posts_table_name = $wpdb->prefix . SBI_INSTAGRAM_FEEDS_POSTS; if ( $wpdb->get_var( "show tables like '$feeds_posts_table_name'" ) !== $feeds_posts_table_name ) { $output .= 'no feeds posts table</br>'; } else { $last_result = $wpdb->get_results( "SELECT * FROM $feeds_posts_table_name ORDER BY id DESC LIMIT 1;" ); if ( is_array( $last_result ) && isset( $last_result[0] ) ) { $output .= '## FEEDS POSTS TABLE ##</br>'; foreach ( $last_result as $column ) { foreach ( $column as $key => $value ) { $output .= esc_html( $key ) . ': ' . esc_html( $value ) . '</br>'; } } } else { $output .= 'feeds posts has no rows'; $output .= '</br>'; } } $output .= '</br>'; if ( $wpdb->get_var( "show tables like '$table_name'" ) !== $table_name ) { $output .= 'no posts table</br>'; } else { $last_result = $wpdb->get_results( "SELECT * FROM $table_name ORDER BY id DESC LIMIT 1;" ); if ( is_array( $last_result ) && isset( $last_result[0] ) ) { $output .= '## POSTS TABLE ##'; $output .= '</br>'; foreach ( $last_result as $column ) { foreach ( $column as $key => $value ) { $output .= esc_html( $key ) . ': ' . esc_html( $value ) . '</br>'; } } } else { $output .= 'posts has no rows</br>'; } } $output .= '</br>'; return $output; } /** * SBI Get Errors Info * * @since 6.0 * * @return string */ public static function get_errors_info() { $output = '## ERRORS: ##</br>'; global $sb_instagram_posts_manager; $errors = $sb_instagram_posts_manager->get_errors(); if ( ! empty( $errors['resizing'] ) ) : $output .= '* Resizing *</br>'; $output .= esc_html( $errors['resizing'] ) . '</br>'; endif; if ( ! empty( $errors['database_create'] ) ) : $output .= '* Database Create *</br>'; $output .= esc_html( $errors['database_create'] ) . '</br>'; endif; if ( ! empty( $errors['upload_dir'] ) ) : $output .= '* Uploads Directory *</br>'; $output .= esc_html( $errors['upload_dir'] ) . '</br>'; endif; if ( ! empty( $errors['connection'] ) ) : $output .= '* API/WP_HTTP Request *</br>'; if ( is_array( $errors['connection'] ) ) { foreach ( $errors['connection'] as $con_error ) { if ( is_array( $con_error ) ) { foreach ( $con_error as $subcon_error ) { $output .= esc_html( $subcon_error ) . '</br>'; } } else { $output .= esc_html( $con_error ) . '</br>'; } } } else { $output .= esc_html( $errors['connection'] ); } endif; $output .= '</br>'; return $output; } /** * Get Action Logs Info * * @since 6.0 * * @return string */ public static function get_action_logs_info() { $output = '## ACTION LOG ##</br>'; global $sb_instagram_posts_manager; $actions = $sb_instagram_posts_manager->get_action_log(); if ( ! empty( $actions ) ) : foreach ( $actions as $action ) : $output .= strip_tags( $action ) . '</br>'; endforeach; endif; $output .= '</br>'; return $output; } /** * Get Feeds Settings * * @since 6.0 * * @return string */ public static function get_oembeds_info() { $output = '## OEMBED: ##</br>'; $oembed_token_settings = get_option( 'sbi_oembed_token', array() ); foreach ( $oembed_token_settings as $key => $value ) { if ( $key === 'access_token' ) { $manager = new \SB_Instagram_Data_Manager(); $output .= esc_html( $key ) . ': ' . esc_html( $manager->remote_encrypt( $value ) ) . '</br>'; } else { $output .= esc_html( $key ) . ': ' . esc_html( $value ) . '</br>'; } } return $output; } /** * SBI Get Support URL * * @since 6.0 * * @return string $url */ public function get_support_url() { $url = 'https://smashballoon.com/instagram-feed/support/'; $license_type = sbi_is_pro_version() ? 'pro' : 'free'; $args = array(); $license_key = get_option( 'sbi_license_key' ); if ( $license_key ) { $license_key = sbi_encrypt_decrypt( 'encrypt', $license_key ); $args['license'] = $license_key; } $args['license_type'] = $license_type; $args['version'] = SBIVER; $url = add_query_arg( $args, $url ); return $url; } /** * SBI Get Whitespace * * @since 6.0 * * @param int $times * * @return string */ public static function get_whitespace( $times ) { return str_repeat( ' ', $times ); } /** * Extensions Manager Page View Template * * @since 6.0 */ public function support_page() { SBI_View::render( 'support.index' ); } }
[+]
builder
[+]
..
[-] SBI_Upgrader.php
[edit]
[-] SBI_oEmbeds.php
[edit]
[-] SBI_Global_Settings.php
[edit]
[+]
assets
[-] SBI_About_Us.php
[edit]
[-] SBI_Support.php
[edit]
[+]
views
[-] SBI_Admin_Notices.php
[edit]
[+]
Traits
[-] SBI_Response.php
[edit]
[-] SBI_View.php
[edit]
[-] SBI_HTTP_Request.php
[edit]