芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/optimyar/wp-content/plugins/jet-elements/includes/class-jet-elements-settings.php
'true', ]; /** * [$settings_page_config description] * @var [type] */ public $settings_page_config = []; /** * Available Widgets Slugs * * @var array */ public $avaliable_widgets_slugs = []; /** * Init page */ public function init() { foreach ( glob( jet_elements()->plugin_path( 'includes/addons/' ) . '*.php' ) as $file ) { $data = get_file_data( $file, array( 'class' => 'Class', 'name' => 'Name', 'slug' => 'Slug' ) ); $slug = basename( $file, '.php' ); $this->avaliable_widgets[ $slug ] = $data['name']; $this->avaliable_widgets_slugs[] = $data['slug']; } add_action( 'jet-styles-manager/compatibility/register-plugin', array( $this, 'register_for_styles_manager' ) ); // Refresh Instagram Access Token add_action( 'admin_init', array( $this, 'refresh_instagram_access_token' ) ); } /** * Register jet-elements plugin for styles manager * * @param object $compatibility_manager JetStyleManager->compatibility instance * @return void */ public function register_for_styles_manager( $compatibility_manager ) { $compatibility_manager->register_plugin( 'jet-elements', (int) $this->get( 'widgets_load_level', 100 ) ); } /** * [generate_frontend_config_data description] * @return [type] [description] */ public function generate_frontend_config_data() { $default_active_widgets = []; foreach ( $this->avaliable_widgets as $slug => $name ) { $avaliable_widgets[] = [ 'label' => $name, 'value' => $slug, ]; $default_active_widgets[ $slug ] = 'true'; } $active_widgets = $this->get( 'avaliable_widgets', $default_active_widgets ); $avaliable_extensions = [ [ 'label' => esc_html__( 'Section Parallax Extension', 'jet-elements' ), 'value' => 'section_parallax', ], ]; $active_extensions = $this->get( 'avaliable_extensions', $this->default_avaliable_extensions ); $rest_api_url = apply_filters( 'jet-elements/rest/frontend/url', get_rest_url() ); $this->settings_page_config = [ 'messages' => [ 'saveSuccess' => esc_html__( 'Saved', 'jet-elements' ), 'saveError' => esc_html__( 'Error', 'jet-elements' ), ], 'settingsApiUrl' => '/jet-elements-api/v1/plugin-settings', 'settingsData' => [ 'svg_uploads' => [ 'value' => $this->get( 'svg_uploads', 'enabled' ), ], 'jet_templates' => [ 'value' => $this->get( 'jet_templates', 'enabled' ), ], 'widgets_load_level' => [ 'value' => $this->get( 'widgets_load_level', 100 ), 'options' => [ [ 'label' => 'None', 'value' => 0, ], [ 'label' => 'Low', 'value' => 25, ], [ 'label' => 'Medium', 'value' => 50, ], [ 'label' => 'Advanced', 'value' => 75, ], [ 'label' => 'Full', 'value' => 100, ], ], ], 'api_key' => [ 'value' => $this->get( 'api_key', '' ), ], 'disable_api_js' => [ 'value' => $this->get( 'disable_api_js', [ 'disable' => 'false' ] ), ], 'use_geocoding_key' => [ 'value' => $this->get( 'use_geocoding_key', [ 'disable' => 'false' ] ), ], 'geocoding_key' => [ 'value' => $this->get( 'geocoding_key', '' ), ], 'mailchimp-api-key' => [ 'value' => $this->get( 'mailchimp-api-key', '' ), ], 'mailchimp-list-id' => [ 'value' => $this->get( 'mailchimp-list-id', '' ), ], 'mailchimp-double-opt-in' => [ 'value' => $this->get( 'mailchimp-double-opt-in', false ), ], 'insta_access_token' => [ 'value' => $this->get( 'insta_access_token', '' ), ], 'insta_business_access_token' => [ 'value' => $this->get( 'insta_business_access_token', '' ), ], 'insta_business_user_id' => [ 'value' => $this->get( 'insta_business_user_id', '' ), ], 'weather_api_key' => [ 'value' => $this->get( 'weather_api_key', '' ), ], 'avaliable_widgets' => [ 'value' => $active_widgets, 'options' => $avaliable_widgets, ], 'avaliable_extensions' => [ 'value' => $active_extensions, 'options' => $avaliable_extensions, ], ], ]; return $this->settings_page_config; } /** * Return settings page URL * * @param string $subpage * @return string */ public function get_settings_page_link( $subpage = 'general' ) { return add_query_arg( array( 'page' => 'jet-dashboard-settings-page', 'subpage' => 'jet-elements-' . $subpage . '-settings', ), esc_url( admin_url( 'admin.php' ) ) ); } /** * [get description] * @param [type] $setting [description] * @param boolean $default [description] * @return [type] [description] */ public function get( $setting, $default = false ) { if ( null === $this->settings ) { $this->settings = get_option( $this->key, array() ); } return isset( $this->settings[ $setting ] ) ? $this->settings[ $setting ] : $default; } /** * Refresh Instagram Access Token * * @return void */ public function refresh_instagram_access_token() { $access_token = $this->get( 'insta_access_token' ); $access_token = trim( $access_token ); if ( empty( $access_token ) ) { return; } $updated = get_transient( $this->insta_updated_access_token_key ); if ( ! empty( $updated ) ) { return; } $url = add_query_arg( array( 'grant_type' => 'ig_refresh_token', 'access_token' => $access_token, ), 'https://graph.instagram.com/refresh_access_token' ); $response = wp_remote_get( $url ); if ( ! $response || is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) { set_transient( $this->insta_updated_access_token_key, 'error', DAY_IN_SECONDS ); return; } $body = wp_remote_retrieve_body( $response ); if ( ! $body ) { set_transient( $this->insta_updated_access_token_key, 'error', DAY_IN_SECONDS ); return; } $body = json_decode( $body, true ); if ( empty( $body['access_token'] ) || empty( $body['expires_in'] ) ) { set_transient( $this->insta_updated_access_token_key, 'error', DAY_IN_SECONDS ); return; } set_transient( $this->insta_updated_access_token_key, 'updated', 30 * DAY_IN_SECONDS ); } /** * Returns the instance. * * @since 1.0.0 * @access public * @return object */ public static function get_instance() { // If the single instance hasn't been set, set it now. if ( null == self::$instance ) { self::$instance = new self; } return self::$instance; } } } /** * Returns instance of Jet_Elements_Settings * * @return object */ function jet_elements_settings() { return Jet_Elements_Settings::get_instance(); } jet_elements_settings()->init();