![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/gg.corals.io/wp-content/plugins/custom-facebook-feed/inc/Admin/ |
<?php /** * The Settings Page * * @since 4.0 */ namespace CustomFacebookFeed\Admin; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly use CustomFacebookFeed\CFF_View; use CustomFacebookFeed\CFF_Utils; use CustomFacebookFeed\CFF_Response; use CustomFacebookFeed\SB_Facebook_Data_Manager; use CustomFacebookFeed\Builder\CFF_Db; use CustomFacebookFeed\CFF_Feed_Locator; use CustomFacebookFeed\Builder\CFF_Feed_Builder; use CustomFacebookFeed\CFF_GDPR_Integrations; use CustomFacebookFeed\Builder\CFF_Feed_Saver_Manager; class CFF_Support { /** * Admin menu page slug. * * @since 4.0 * * @var string */ const SLUG = 'cff-support'; /** * Initializing the class * * @since 4.0 */ public function __construct(){ $this->init(); } /** * Determining if the user is viewing the our page, if so, party on. * * @since 4.0 */ public function init() { if ( ! is_admin() ) { return; } add_action( 'admin_menu', [ $this, 'register_menu' ] ); add_action( 'wp_ajax_cff_export_settings_json', [$this, 'cff_export_settings_json'] ); } /** * Register Menu. * * @since 4.0 */ public function register_menu() { $cap = current_user_can( 'manage_custom_facebook_feed_options' ) ? 'manage_custom_facebook_feed_options' : 'manage_options'; $cap = apply_filters( 'cff_settings_pages_capability', $cap ); $support_page = add_submenu_page( 'cff-top', __( 'Support', 'custom-facebook-feed' ), __( 'Support', 'custom-facebook-feed' ), $cap, self::SLUG, [$this, 'support_page'], 4 ); add_action( 'load-' . $support_page, [$this,'support_page_enqueue_assets']); } /** * Enqueue Extension CSS & Script. * * Loads only for Extension page * * @since 4.0 */ public function support_page_enqueue_assets(){ if( ! get_current_screen() ) { return; } $screen = get_current_screen(); if ( ! 'facebook-feed_page_cff-support' === $screen->id ) { return; } wp_enqueue_style( 'cff-fira-code-font', 'https://fonts.googleapis.com/css2?family=Fira+Code&display=swap', false, CFFVER ); wp_enqueue_style( 'support-style', CFF_PLUGIN_URL . 'admin/assets/css/support.css', false, CFFVER ); wp_enqueue_script( 'sb-vue', CFF_PLUGIN_URL . 'admin/assets/js/vue.min.js', null, '2.6.12', true ); wp_enqueue_script( 'support-app', CFF_PLUGIN_URL.'admin/assets/js/support.js', array( 'sb-vue' ), CFFVER, true ); $cff_support = $this->page_data(); wp_localize_script( 'support-app', 'cff_support', $cff_support ); } /** * Page Data to use in front end * * @since 4.0 * * @return array */ public function page_data() { $exported_feeds = CFF_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( 'cff-admin' ), 'links' => \CustomFacebookFeed\Builder\CFF_Feed_Builder::get_links_with_utm(), 'supportPageUrl' => admin_url( 'admin.php?page=cff-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' => CFF_Feed_Builder::builder_svg_icons(), 'socialWallLinks' => \CustomFacebookFeed\Builder\CFF_Feed_Builder::get_social_wall_links(), 'socialWallActivated' => is_plugin_active( 'social-wall/social-wall.php' ), 'tempUser' => \CustomFacebookFeed\Admin\CFF_Support_Tool::check_temporary_user_exists(), 'genericText' => array( 'help' => __( 'Help', 'custom-facebook-feed' ), 'title' => __( 'Support', 'custom-facebook-feed' ), 'gettingStarted' => __( 'Getting Started', 'custom-facebook-feed' ), 'someHelpful' => __( 'Some helpful resources to get you started', 'custom-facebook-feed' ), 'docsN' => __( 'Docs & Troubleshooting', 'custom-facebook-feed' ), 'runInto' => __( 'Run into an issue? Check out our help docs.', 'custom-facebook-feed' ), 'additionalR' => __( 'Additional Resources', 'custom-facebook-feed' ), 'toHelp' => __( 'To help you get the most out of the plugin', 'custom-facebook-feed' ), 'needMore' => __( 'Need more support? We’re here to help.', 'custom-facebook-feed' ), 'ourFast' => __( 'Our fast and friendly support team is always happy to help!', 'custom-facebook-feed' ), 'systemInfo' => __( 'System Info', 'custom-facebook-feed' ), 'exportSettings' => __( 'Export Settings', 'custom-facebook-feed' ), 'shareYour' => __( 'Share your plugin settings easily with Support', 'custom-facebook-feed' ), 'copiedToClipboard' => __( 'Copied to clipboard', 'custom-facebook-feed' ), 'learnMore' => __('Learn More', 'custom-facebook-feed'), 'delete' => __('Delete', 'custom-facebook-feed'), 'copyLink' => __('Copy Link', 'custom-facebook-feed'), 'link' => __('Link', 'custom-facebook-feed'), 'expires' => __('Expires in', 'custom-facebook-feed'), 'days' => __('Days', 'custom-facebook-feed'), 'day' => __('Day', 'custom-facebook-feed'), 'newTempHeading' => __('Temporary Login', 'custom-facebook-feed'), 'newTempDesc' => __('Our team might require temporary login access with limited access to only our plugin to help you test your issues.', 'custom-facebook-feed'), 'newTempButton' => __('Create Temporary Login Link', 'custom-facebook-feed'), 'tempLoginHeading' => __('Temporary Login', 'custom-facebook-feed'), 'tempLoginDesc' => __('Temporary Login link for support access created by you. This is auto-destructed 14 days after creation. To create a new link, please delete the old one.', 'custom-facebook-feed'), ), 'buttons' => array( 'searchDoc' => __( 'Search Documentation', 'custom-facebook-feed' ), 'moreHelp' => __( 'More help on Getting started', 'custom-facebook-feed' ), 'viewDoc' => __( 'View Documentation', 'custom-facebook-feed' ), 'viewBlog' => __( 'View Blog', 'custom-facebook-feed' ), 'submitTicket' => __( 'Submit a Support Ticket', 'custom-facebook-feed' ), 'copy' => __( 'Copy', 'custom-facebook-feed' ), 'copied' => __( 'Copied', 'custom-facebook-feed' ), 'copy' => __( 'Copy', 'custom-facebook-feed' ), 'export' => __( 'Export', 'custom-facebook-feed' ), 'expand' => __( 'Expand', 'custom-facebook-feed' ), 'collapse' => __( 'Collapse', 'custom-facebook-feed' ), ), 'icons' => array( 'rocket' => CFF_PLUGIN_URL . 'admin/assets/img/rocket-icon.png', 'book' => CFF_PLUGIN_URL . 'admin/assets/img/book-icon.png', 'save' => CFF_PLUGIN_URL . 'admin/assets/img/save-plus-icon.png', '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' => CFF_PLUGIN_URL . 'admin/assets/img/support-members.png' ), 'articles' => array( 'gettingStarted' => array( array( 'title' => __( 'Creating your first Facebook feed', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/doc/setting-up-the-free-custom-facebook-feed-wordpress-plugin-4-0/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Creating your first Facebook feed' ), array( 'title' => __( 'Displaying a Facebook Group feed', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/doc/display-facebook-group-feed/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Displaying a Facebook Group feed' ), array( 'title' => __( 'Customizing your feed', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/doc/customize-facebook-feed/?facebook&utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Customizing your feed' ), ), 'docs' => array( array( 'title' => __( 'Facebook feed is not displaying', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/doc/facebook-feed-doesnt-show-can-see-like-box-posts-gives/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Facebook feed is not displaying' ), array( 'title' => __( 'Facebook posts missing or feed stopped updating', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/doc/facebook-feed-appears-stopped-updating-working/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Facebook posts missing or feed stopped updating' ), array( 'title' => __( 'How to resolve error messages', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/doc/facebook-api-errors/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=How to resolve error messages' ), ), 'resources' => array( array( 'title' => __( 'Add Facebook pages or groups to the same feed', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/extensions/multifeed/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Add Facebook pages or groups to the same feed' ), array( 'title' => __( 'Display your Facebook feed as a carousel', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/extensions/carousel/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Display your Facebook feed as a carousel' ), array( 'title' => __( 'Create a Facebook Reviews feed', 'custom-facebook-feed' ), 'link' => 'https://smashballoon.com/extensions/reviews/?utm_campaign=facebook-free&utm_source=support&utm_medium=docs&utm_content=Create a Facebook Reviews feed' ), ), ) ); return $return; } /** * Get System Info * * @since 4.0 */ public function get_system_info() { $output = ''; $next_background_check = ''; $options = get_option('cff_style_settings'); if ( wp_next_scheduled( 'cff_cache_cron' ) ) { //Get the timezone $cff_orig_timezone = date_default_timezone_get(); if ( isset( $options[ 'cff_timezone' ] ) ) { date_default_timezone_set( $options[ 'cff_timezone' ] ); } $schedule = wp_get_schedule( 'cff_cache_cron' ); if( $schedule == '30mins' ) $schedule = 'every ' . $schedule; $cff_next_cron_event = wp_next_scheduled( 'cff_cache_cron' ); $next_background_check = date('g:i a', $cff_next_cron_event) . ' (' . $schedule . ')'; //Reset the timezone date_default_timezone_set( $cff_orig_timezone ); } else { $next_background_check = 'Nothing currently scheduled'; } $timezone = ''; $timezone = isset( $options[ 'cff_timezone' ] ) ? $options[ 'cff_timezone' ] : ''; // 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_posts_table_info(); $output .= self::get_errors_info(); $output .= self::get_action_logs_info(); $output .= self::get_oembeds_info(); return $output; } /** * Get Site and Server Info * * @since 4.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()) ? "Yes" : "No"; $plugin_name = 'Smash Balloon Custom Facebook Feed'; $output = '## SITE/SERVER INFO: ##' . "</br>"; $output .= 'Plugin Version:' . self::get_whitespace( 11 ) . $plugin_name . "</br>"; $output .= 'Site URL:' . self::get_whitespace( 17 ) . site_url() . "</br>"; $output .= 'Home URL:' . self::get_whitespace( 17 ) . home_url() . "</br>"; $output .= 'WordPress Version:' . self::get_whitespace( 8 ) . get_bloginfo( 'version' ) . "</br>"; $output .= 'PHP Version:' . self::get_whitespace( 14 ) . PHP_VERSION . "</br>"; $output .= 'Web Server Info:' . self::get_whitespace( 10 ) . $_SERVER['SERVER_SOFTWARE'] . "</br>"; $output .= 'PHP allow_url_fopen:' . self::get_whitespace( 6 ) . $allow_url_fopen . "</br>"; $output .= 'PHP cURL:' . self::get_whitespace( 17 ) . $php_curl . "</br>"; $output .= 'JSON:' . self::get_whitespace( 21 ) . $php_json_decode . "</br>"; $output .= 'SSL Stream:' . self::get_whitespace( 15 ) . $php_ssl . "</br>"; $output .= "</br>"; return $output; } /** * Get Active Plugins * * @since 4.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 ) ) { $output .= $plugin['Name'] . ': ' . $plugin['Version'] ."</br>"; } } $output .= "</br>"; return $output; } /** * Get Global Settings * * @since 4.0 * * @return string */ public static function get_global_settings_info() { $output = "## GLOBAL SETTINGS: ## </br>"; $cff_license_key = get_option( 'cff_license_key' ); $cff_license_data = get_option( 'cff_license_data' ); $cff_license_status = get_option( 'cff_license_status' ); $cff_preserve_setitngs = get_option( 'cff_preserve_settings' ); $cff_locale = get_option( 'cff_locale', 'en_US' ); $cff_options = get_option( 'cff_style_settings' ); $usage_tracking = get_option( 'cff_usage_tracking', array( 'last_send' => 0, 'enabled' => CFF_Utils::cff_is_pro_version() ) ); $output .= 'License key: '; if ( $cff_license_key ) { $output .= $cff_license_key; } else { $output .= ' Not added';; } $output .= "</br>"; $output .= 'License status: '; if ( $cff_license_status ) { $output .= $cff_license_status; } else { $output .= ' Inactive'; } $output .= "</br>"; $output .= 'Preserve settings if plugin is removed: '; $output .= ( $cff_preserve_setitngs ) ? 'Yes' : 'No'; $output .= "</br>"; $output .= "Connected Accounts: "; if ( get_option( 'cff_connected_accounts' ) ) { $output .= "Connected Accounts: "; } else { $output .= 'No accounts are connected'; } $output .= "</br>"; $output .= 'Locale: ' . $cff_locale . "</br>"; $output .= 'Timezone: '; $output .= isset( $cff_options['cff_timezone'] ) ? $cff_options['cff_timezone'] : ''; $output .= "</br>"; $output .= 'GDPR: '; $output .= isset( $cff_options[ 'gdpr' ] ) ? $cff_options[ 'gdpr' ] : ' Not setup'; $output .= "</br>"; $output .= 'Custom CSS: '; $output .= isset( $cff_options[ 'cff_custom_css' ] ) && ! empty( $cff_options[ 'cff_custom_css' ] ) ? $cff_options[ 'cff_custom_js' ] : 'Empty'; $output .= "</br>"; $output .= 'Custom JS: '; $output .= isset( $cff_options[ 'cff_custom_js' ] ) && ! empty( $cff_options[ 'cff_custom_js' ] ) ? $cff_options[ 'cff_custom_js' ] : 'Empty'; $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( $cff_options[ 'cff_disable_ajax_cache' ] ) && $cff_options[ 'cff_disable_ajax_cache' ] == true ? 'Enabled' : 'Disabled'; $output .= "</br>"; $output .= 'Show Credit Link: '; $output .= isset( $cff_options['cff_format_issue'] ) && $cff_options['cff_format_issue'] == true ? 'Enabled' : 'Disabled'; $output .= "</br>"; $output .= 'Fix Text Shortening Issue: '; $output .= isset( $cff_options['cff_show_credit'] ) && $cff_options['cff_show_credit'] == true ? 'Enabled' : 'Disabled'; $output .= "</br>"; $output .= 'Admin Error Notice: '; $output .= isset( $cff_options['disable_admin_notice'] ) && $cff_options['disable_admin_notice'] == true ? 'Enabled' : 'Disabled'; $output .= "</br>"; $output .= 'Feed Issue Email Reports: '; $output .= isset( $cff_options['enable_email_report'] ) && $cff_options['enable_email_report'] == true ? 'Enabled' : 'Disabled'; $output .= "</br>"; $output .= 'Email notification: '; $output .= isset( $cff_options['email_notification'] ) && $cff_options['email_notification'] !== null ? ucfirst($cff_options['email_notification']) : 'Off'; $output .= "</br>"; $output .= 'Email notification addresses: '; $output .= isset( $cff_options['email_notification_addresses'] ) && !empty( $cff_options['email_notification_addresses'] ) ? $cff_options['email_notification_addresses'] : 'Not available'; $output .= "</br>"; $output .= "</br>"; return $output; } /** * Get Feeds Settings * * @since 4.0 * * @return string */ public static function get_feeds_settings_info() { $output = "## FEEDS: ## </br>"; $feeds_list = CFF_Feed_Builder::get_feed_list(); $source_list = CFF_Feed_Builder::get_source_list(); $manager = new SB_Facebook_Data_Manager(); $i = 0; foreach( $feeds_list as $feed ) { if ( $i >= 25 ) { break; } $output .= $feed['feed_name']; if ( isset( $feed['settings'] ) ) { $source_id = $feed['settings']->sources; $source = array(); $output .= ' - ' . ucfirst( $feed['settings']->feedtype ); $output .= '</br>'; foreach( $source_list as $source ) { if ( $source['account_id'] == $source_id ) { $output .= $source['username']; $output .= ' (' . $source_id . ')'; } } } $output .= "</br>"; if ( isset( $feed['location_summary'] ) && count( $feed['location_summary'] ) > 0 ) { $first_feed = $feed['location_summary'][0]; $output .= $first_feed['link'] . '?sb_debug'; } $output .= "</br>"; if ( $i < ( count( $feeds_list ) - 1 ) ) { $output .= "</br>"; } $i++; } $output .= "</br>"; return $output; } /** * Get Image Resizing Info * * @since 4.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 ) . CFF_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 4.0 * * @return string */ public static function get_posts_table_info() { $output = "## POSTS: ## </br>"; global $wpdb; $table_name = esc_sql( $wpdb->prefix . CFF_POSTS_TABLE ); $feeds_posts_table_name = esc_sql( $wpdb->prefix . CFF_FEEDS_POSTS_TABLE ); 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 .= $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 .= $key . ': ' . esc_html( $value ) . "</br>";; } } } else { $output .= 'feeds posts has no rows' . "</br>"; } } $output .= "</br>"; return $output; } /** * CFF Get Errors Info * * @since 4.0 * * @return string */ public static function get_errors_info() { $output = "## ERRORS: ##" . "</br>"; $errors = \cff_main()->cff_error_reporter->get_errors(); if ( ! empty( $errors['resizing'] ) && is_string( $errors['resizing'] ) ) : $output .= '* Resizing *' . "</br>"; $output .= $errors['resizing'] . "</br>"; endif; if ( ! empty( $errors['database_create'] ) ) : $output .= '* Database Create *' . "</br>"; $output .= $errors['database_create'] . "</br>"; endif; if ( ! empty( $errors['upload_dir'] ) ) : $output .= '* Uploads Directory *' . "</br>"; $output .= $errors['upload_dir'] . "</br>"; endif; if ( ! empty( $errors['connection'] ) ) : $output .= '* API/WP_HTTP Request *' . "</br>"; $output .= print_r( $errors['connection'], true ); endif; $output .= "</br>"; return $output; } /** * Get Action Logs Info * * @since 4.0 * * @return string */ public static function get_action_logs_info() { $output = "## ACTION LOG ##" . "</br>"; $actions = \cff_main()->cff_error_reporter->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 4.0 * * @return string */ public static function get_oembeds_info() { $output = "## OEMBED: ##" . "</br>"; $oembed_token_settings = get_option( 'cff_oembed_token', array() ); foreach( $oembed_token_settings as $key => $value ) { $output .= $key . ': ' . esc_attr( $value ) . "</br>"; } return $output; } /** * CFF Get Support URL * * @since 4.0 * * @return string $url */ public function get_support_url() { $url = 'https://smashballoon.com/custom-facebook-feed/support/'; $license_type = CFF_Utils::cff_is_pro_version() ? 'pro' : 'free'; $args = array(); $license_key = get_option( 'cff_license_key' ); if ( $license_key ) { $license_key = sb_encrypt_decrypt( 'encrypt', $license_key ); $args['license'] = $license_key; } $args['license_type'] = $license_type; $args['version'] = CFFVER; $url = add_query_arg( $args, $url ); return $url; } /** * CFF Export Feed Settings JSON * * @since 4.0 * * @return CFF_Response */ public function cff_export_settings_json() { //\CustomFacebookFeed\Builder\CFF_Feed_Builder::check_privilege( false ); //Security Checks check_ajax_referer( 'cff-admin', 'nonce' ); $cap = current_user_can( 'manage_custom_facebook_feed_options' ) ? 'manage_custom_facebook_feed_options' : 'manage_options'; $cap = apply_filters( 'cff_settings_pages_capability', $cap ); if ( ! current_user_can( $cap ) ) { wp_send_json_error(); // This auto-dies. } if ( ! isset( $_GET['feed_id'] ) ) { return; } $feed_id = filter_var( $_GET['feed_id'], FILTER_SANITIZE_NUMBER_INT ); $feed = CFF_Feed_Saver_Manager::get_export_json( $feed_id ); $feed_info = CFF_Db::feeds_query( array('id' => $feed_id) ); $feed_name = strtolower( $feed_info[0]['feed_name'] ); $filename = 'cff-feed-' . $feed_name . '.json'; // Creates a new csv file and store it in tmp directory $file = fopen( '/tmp/' . $filename, 'w' ); fwrite($file, $feed); fclose($file); // output headers so that the file is downloaded rather than displayed header( "Content-type: application/json" ); header( "Content-disposition: attachment; filename = " . $filename ); readfile( "/tmp/" . $filename ); exit; } /** * CFF Get Whitespace * * @since 4.0 * * @param int $times * * @return string */ public static function get_whitespace( $times ) { return str_repeat(' ', $times ); } /** * Extensions Manager Page View Template * * @since 4.0 */ public function support_page(){ CFF_View::render( 'support.index' ); } }