add wp-rocket
This commit is contained in:
2141
wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Page.php
Normal file
2141
wp-content/plugins/wp-rocket/inc/Engine/Admin/Settings/Page.php
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,476 @@
|
||||
<?php
|
||||
namespace WP_Rocket\Engine\Admin\Settings;
|
||||
|
||||
use WP_Rocket\Abstract_Render;
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
/**
|
||||
* Handle rendering of HTML content for the settings page.
|
||||
*
|
||||
* @since 3.5.5 Moves into the new architecture.
|
||||
* @since 3.0
|
||||
*/
|
||||
class Render extends Abstract_render {
|
||||
/**
|
||||
* Settings array.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $settings = [];
|
||||
|
||||
/**
|
||||
* Hidden settings array.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $hidden_settings;
|
||||
|
||||
/**
|
||||
* Sets the settings value.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $settings Array of settings.
|
||||
* @return void
|
||||
*/
|
||||
public function set_settings( $settings ) {
|
||||
$this->settings = (array) $settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the hidden settings value.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $hidden_settings Array of hidden settings.
|
||||
*/
|
||||
public function set_hidden_settings( $hidden_settings ) {
|
||||
$this->hidden_settings = $hidden_settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the page sections navigation.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function render_navigation() {
|
||||
/**
|
||||
* Filters WP Rocket settings page navigation items.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $navigation {
|
||||
* Items to populate the navigation.
|
||||
*
|
||||
* @type string $id Page section identifier.
|
||||
* @type string $title Menu item title.
|
||||
* @type string $menu_description Menu item description.
|
||||
* @type string $class Menu item classes
|
||||
* }
|
||||
*/
|
||||
$navigation = (array) apply_filters( 'rocket_settings_menu_navigation', $this->settings );
|
||||
|
||||
$default = [
|
||||
'id' => '',
|
||||
'title' => '',
|
||||
'menu_description' => '',
|
||||
'class' => '',
|
||||
];
|
||||
|
||||
$navigation = array_map(
|
||||
function( array $item ) use ( $default ) {
|
||||
$item = wp_parse_args( $item, $default );
|
||||
|
||||
if ( ! empty( $item['class'] ) ) {
|
||||
$item['class'] = implode( ' ', array_map( 'sanitize_html_class', $item['class'] ) );
|
||||
}
|
||||
|
||||
unset( $item['sections'] );
|
||||
return $item;
|
||||
},
|
||||
$navigation
|
||||
);
|
||||
|
||||
echo $this->generate( 'navigation', $navigation ); // phpcs:ignore WordPress.Security.EscapeOutput -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the page sections.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function render_form_sections() {
|
||||
if ( ! isset( $this->settings ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ( $this->settings as $id => $args ) {
|
||||
$default = [
|
||||
'title' => '',
|
||||
'menu_description' => '',
|
||||
'class' => '',
|
||||
];
|
||||
|
||||
$args = wp_parse_args( $args, $default );
|
||||
$id = str_replace( '_', '-', $id );
|
||||
|
||||
echo $this->generate( 'page-sections/' . $id, $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the Imagify page section.
|
||||
*
|
||||
* @since 3.2
|
||||
*/
|
||||
public function render_imagify_section() {
|
||||
echo $this->generate( 'page-sections/imagify' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the Tutorials page section.
|
||||
*
|
||||
* @since 3.4
|
||||
*/
|
||||
public function render_tutorials_section() {
|
||||
echo $this->generate( 'page-sections/tutorials' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Render the tools page section.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function render_tools_section() {
|
||||
echo $this->generate( 'page-sections/tools' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the settings sections for a page section.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param string $page Page section identifier.
|
||||
* @return void
|
||||
*/
|
||||
public function render_settings_sections( $page ) {
|
||||
if ( ! isset( $this->settings[ $page ]['sections'] ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ( $this->settings[ $page ]['sections'] as $args ) {
|
||||
$default = [
|
||||
'type' => 'fields_container',
|
||||
'title' => '',
|
||||
'description' => '',
|
||||
'class' => '',
|
||||
'help' => '',
|
||||
'helper' => '',
|
||||
'page' => '',
|
||||
];
|
||||
|
||||
$args = wp_parse_args( $args, $default );
|
||||
|
||||
if ( ! empty( $args['class'] ) ) {
|
||||
$args['class'] = implode( ' ', array_map( 'sanitize_html_class', $args['class'] ) );
|
||||
}
|
||||
|
||||
call_user_func_array( [ $this, $args['type'] ], [ $args ] );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders the settings fields for a setting section and page.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param string $page Page section identifier.
|
||||
* @param string $section Settings section identifier.
|
||||
* @return void
|
||||
*/
|
||||
public function render_settings_fields( $page, $section ) {
|
||||
if ( ! isset( $this->settings[ $page ]['sections'][ $section ]['fields'] ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ( $this->settings[ $page ]['sections'][ $section ]['fields'] as $args ) {
|
||||
$default = [
|
||||
'type' => 'text',
|
||||
'label' => '',
|
||||
'description' => '',
|
||||
'class' => '',
|
||||
'container_class' => '',
|
||||
'default' => '',
|
||||
'helper' => '',
|
||||
'placeholder' => '',
|
||||
'parent' => '',
|
||||
'section' => '',
|
||||
'page' => '',
|
||||
'sanitize_callback' => 'sanitize_text_field',
|
||||
'input_attr' => '',
|
||||
'warning' => [],
|
||||
];
|
||||
|
||||
$args = wp_parse_args( $args, $default );
|
||||
|
||||
if ( ! empty( $args['input_attr'] ) ) {
|
||||
$input_attr = '';
|
||||
|
||||
foreach ( $args['input_attr'] as $key => $value ) {
|
||||
if ( 'disabled' === $key ) {
|
||||
if ( 1 === $value ) {
|
||||
$input_attr .= ' disabled';
|
||||
}
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
$input_attr .= ' ' . sanitize_key( $key ) . '="' . esc_attr( $value ) . '"';
|
||||
}
|
||||
|
||||
$args['input_attr'] = $input_attr;
|
||||
}
|
||||
|
||||
if ( ! empty( $args['parent'] ) ) {
|
||||
$args['parent'] = ' data-parent="' . esc_attr( $args['parent'] ) . '"';
|
||||
}
|
||||
|
||||
if ( ! empty( $args['class'] ) ) {
|
||||
$args['class'] = implode( ' ', array_map( 'sanitize_html_class', $args['class'] ) );
|
||||
}
|
||||
|
||||
if ( ! empty( $args['container_class'] ) ) {
|
||||
$args['container_class'] = implode( ' ', array_map( 'sanitize_html_class', $args['container_class'] ) );
|
||||
}
|
||||
|
||||
call_user_func_array( [ $this, $args['type'] ], [ $args ] );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Renders hidden fields in the form.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function render_hidden_fields() {
|
||||
foreach ( $this->hidden_settings as $setting ) {
|
||||
call_user_func_array( [ $this, 'hidden' ], [ $setting ] );
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the fields container section template.
|
||||
*
|
||||
* @since 3.0
|
||||
* @author Remy Perona
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function fields_container( $args ) {
|
||||
echo $this->generate( 'sections/fields-container', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the no container section template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function nocontainer( $args ) {
|
||||
echo $this->generate( 'sections/nocontainer', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the add-ons container section template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function addons_container( $args ) {
|
||||
echo $this->generate( 'sections/addons-container', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the text field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function text( $args ) {
|
||||
echo $this->generate( 'fields/text', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the checkbox field template.
|
||||
*
|
||||
* @since 3.0
|
||||
* @author Remy Perona
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
* @return void
|
||||
*/
|
||||
public function checkbox( $args ) {
|
||||
echo $this->generate( 'fields/checkbox', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the textarea field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function textarea( $args ) {
|
||||
if ( is_array( $args['value'] ) ) {
|
||||
$args['value'] = implode( "\n", $args['value'] );
|
||||
}
|
||||
|
||||
$args['value'] = empty( $args['value'] ) ? '' : $args['value'];
|
||||
|
||||
echo $this->generate( 'fields/textarea', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the sliding checkbox field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function sliding_checkbox( $args ) {
|
||||
echo $this->generate( 'fields/sliding-checkbox', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the number input field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function number( $args ) {
|
||||
echo $this->generate( 'fields/number', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the select field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function select( $args ) {
|
||||
echo $this->generate( 'fields/select', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the clear cache lifespan block template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function cache_lifespan( $args ) {
|
||||
echo $this->generate( 'fields/cache-lifespan', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the hidden field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function hidden( $args ) {
|
||||
echo $this->generate( 'fields/hidden', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the CDN CNAMES template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function cnames( $args ) {
|
||||
echo $this->generate( 'fields/cnames', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the RocketCDN template.
|
||||
*
|
||||
* @since 3.5
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function rocket_cdn( $args ) {
|
||||
echo $this->generate( 'fields/rocket-cdn', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the one-click add-on field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function one_click_addon( $args ) {
|
||||
echo $this->generate( 'fields/one-click-addon', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the Rocket add-on field template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $args Array of arguments to populate the template.
|
||||
*/
|
||||
public function rocket_addon( $args ) {
|
||||
echo $this->generate( 'fields/rocket-addon', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the import form template.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function render_import_form() {
|
||||
$args = [];
|
||||
|
||||
/**
|
||||
* Filter the maximum allowed upload size for import files.
|
||||
*
|
||||
* @since (WordPress) 2.3.0
|
||||
*
|
||||
* @see wp_max_upload_size()
|
||||
*
|
||||
* @param int $max_upload_size Allowed upload size. Default 1 MB.
|
||||
*/
|
||||
$args['bytes'] = apply_filters( 'import_upload_size_limit', wp_max_upload_size() ); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedHooknameFound
|
||||
$args['size'] = size_format( $args['bytes'] );
|
||||
$args['upload_dir'] = wp_upload_dir();
|
||||
$args['action'] = 'rocket_import_settings';
|
||||
$args['submit_text'] = __( 'Upload file and import settings', 'rocket' );
|
||||
|
||||
echo $this->generate( 'fields/import-form', $args ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays a partial template.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param string $part Partial template name.
|
||||
*/
|
||||
public function render_part( $part ) {
|
||||
echo $this->generate( 'partials/' . $part ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Dynamic content is properly escaped in the view.
|
||||
}
|
||||
}
|
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
namespace WP_Rocket\Engine\Admin\Settings;
|
||||
|
||||
use WP_Rocket\Engine\Container\ServiceProvider\AbstractServiceProvider;
|
||||
|
||||
/**
|
||||
* Service provider for the WP Rocket settings.
|
||||
*
|
||||
* @since 3.5.5 Moves into the new architecture.
|
||||
* @since 3.3
|
||||
*/
|
||||
class ServiceProvider extends AbstractServiceProvider {
|
||||
|
||||
/**
|
||||
* The provides array is a way to let the container
|
||||
* know that a service is provided by this service
|
||||
* provider. Every service that is registered via
|
||||
* this service provider must have an alias added
|
||||
* to this array or it will be ignored.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected $provides = [
|
||||
'settings',
|
||||
'settings_render',
|
||||
'settings_page',
|
||||
'settings_page_subscriber',
|
||||
];
|
||||
|
||||
/**
|
||||
* Registers the option array in the container.
|
||||
*
|
||||
* @since 3.3
|
||||
*/
|
||||
public function register() {
|
||||
$this->getContainer()->add( 'settings', 'WP_Rocket\Engine\Admin\Settings\Settings' )
|
||||
->withArgument( $this->getContainer()->get( 'options' ) );
|
||||
$this->getContainer()->add( 'settings_render', 'WP_Rocket\Engine\Admin\Settings\Render' )
|
||||
->withArgument( $this->getContainer()->get( 'template_path' ) . '/settings' );
|
||||
$this->getContainer()->add( 'settings_page', 'WP_Rocket\Engine\Admin\Settings\Page' )
|
||||
->withArgument( $this->getContainer()->get( 'settings_page_config' ) )
|
||||
->withArgument( $this->getContainer()->get( 'settings' ) )
|
||||
->withArgument( $this->getContainer()->get( 'settings_render' ) )
|
||||
->withArgument( $this->getContainer()->get( 'beacon' ) )
|
||||
->withArgument( $this->getContainer()->get( 'db_optimization' ) )
|
||||
->withArgument( $this->getContainer()->get( 'user_client' ) );
|
||||
$this->getContainer()->share( 'settings_page_subscriber', 'WP_Rocket\Engine\Admin\Settings\Subscriber' )
|
||||
->withArgument( $this->getContainer()->get( 'settings_page' ) );
|
||||
}
|
||||
}
|
@@ -0,0 +1,667 @@
|
||||
<?php
|
||||
namespace WP_Rocket\Engine\Admin\Settings;
|
||||
|
||||
use WP_Rocket\Admin\Options_Data;
|
||||
use WP_Rocket\Subscriber\Third_Party\Plugins\Security\Sucuri_Subscriber;
|
||||
|
||||
/**
|
||||
* Settings class.
|
||||
*
|
||||
* @since 3.5.5 Moves into the new architecture.
|
||||
*/
|
||||
class Settings {
|
||||
/**
|
||||
* Options_Data instance.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @var Options_Data
|
||||
*/
|
||||
private $options;
|
||||
|
||||
/**
|
||||
* Array of settings to build the settings page.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $settings;
|
||||
|
||||
/**
|
||||
* Hidden settings on the settings page.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $hidden_settings;
|
||||
|
||||
/**
|
||||
* Font formats allowed to be preloaded.
|
||||
*
|
||||
* @since 3.6
|
||||
* @see $this->sanitize_font()
|
||||
*
|
||||
* @var string|bool
|
||||
*/
|
||||
private $font_formats = [
|
||||
'otf',
|
||||
'ttf',
|
||||
'svg',
|
||||
'woff',
|
||||
'woff2',
|
||||
];
|
||||
|
||||
/**
|
||||
* Array of valid hosts.
|
||||
*
|
||||
* @since 3.6
|
||||
* @see $this->get_hosts()
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
private $hosts;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param Options_Data $options Options_Data instance.
|
||||
*/
|
||||
public function __construct( Options_Data $options ) {
|
||||
$this->options = $options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a page section to the settings.
|
||||
*
|
||||
* A page section is a top-level block containing settings sections.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param string $id Page section identifier.
|
||||
* @param array $args {
|
||||
* Data to build the section.
|
||||
*
|
||||
* @type string $title Section title.
|
||||
* @type string $menu_description Description displayed in the navigation.
|
||||
* }
|
||||
* @return void
|
||||
*/
|
||||
public function add_page_section( $id, $args ) {
|
||||
$args['id'] = $id;
|
||||
|
||||
$this->settings[ $id ] = $args;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds settings sections to the settings.
|
||||
*
|
||||
* A setting section is a block containing settings fields.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $settings_sections {
|
||||
* Data to build the section.
|
||||
*
|
||||
* @type string $title Section title.
|
||||
* @type string $type Type of section.
|
||||
* @type string $page Page section identifier it belongs to.
|
||||
* @type string $description Section description.
|
||||
* @type string $help Helper IDs for beacon.
|
||||
* }
|
||||
* @return void
|
||||
*/
|
||||
public function add_settings_sections( $settings_sections ) {
|
||||
foreach ( $settings_sections as $id => $args ) {
|
||||
$args['id'] = $id;
|
||||
|
||||
$this->settings[ $args['page'] ]['sections'][ $id ] = $args;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds settings fields to the settings.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $settings_fields {
|
||||
* Data to build the section.
|
||||
*
|
||||
* @type string $id Identifier.
|
||||
* @type string $title Field title.
|
||||
* }
|
||||
* @return void
|
||||
*/
|
||||
public function add_settings_fields( $settings_fields ) {
|
||||
foreach ( $settings_fields as $id => $args ) {
|
||||
$args['id'] = $id;
|
||||
$args['value'] = $this->options->get( $id, $args['default'] );
|
||||
$page = $args['page'];
|
||||
$section = $args['section'];
|
||||
unset( $args['page'], $args['section'] );
|
||||
|
||||
$this->settings[ $page ]['sections'][ $section ]['fields'][ $id ] = $args;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds hidden settings fields to the settings.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $hidden_settings_fields {
|
||||
* Data to build the section.
|
||||
*
|
||||
* @type string $id Identifier.
|
||||
* }
|
||||
* @return void
|
||||
*/
|
||||
public function add_hidden_settings_fields( $hidden_settings_fields ) {
|
||||
foreach ( $hidden_settings_fields as $id ) {
|
||||
$value = $this->options->get( $id );
|
||||
|
||||
$this->hidden_settings[] = [
|
||||
'id' => $id,
|
||||
'value' => $value,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the plugin settings
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function get_settings() {
|
||||
return $this->settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the plugin hidden settings
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function get_hidden_settings() {
|
||||
return $this->hidden_settings;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sanitizes the submitted values.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $input Array of values submitted by the form.
|
||||
* @return array
|
||||
*/
|
||||
public function sanitize_callback( $input ) {
|
||||
global $wp_settings_errors;
|
||||
|
||||
$input['do_beta'] = ! empty( $input['do_beta'] ) ? 1 : 0;
|
||||
|
||||
$input['cache_logged_user'] = ! empty( $input['cache_logged_user'] ) ? 1 : 0;
|
||||
|
||||
$input['cache_ssl'] = ! empty( $input['cache_ssl'] ) ? 1 : 0;
|
||||
|
||||
$input['cache_mobile'] = ! empty( $input['cache_mobile'] ) ? 1 : 0;
|
||||
$input['do_caching_mobile_files'] = ! empty( $input['do_caching_mobile_files'] ) ? 1 : 0;
|
||||
|
||||
$input['minify_google_fonts'] = ! empty( $input['minify_google_fonts'] ) ? 1 : 0;
|
||||
|
||||
// Option : Minification CSS & JS.
|
||||
$input['minify_css'] = ! empty( $input['minify_css'] ) ? 1 : 0;
|
||||
$input['minify_js'] = ! empty( $input['minify_js'] ) ? 1 : 0;
|
||||
|
||||
$input['minify_concatenate_css'] = ! empty( $input['minify_concatenate_css'] ) ? 1 : 0;
|
||||
$input['minify_concatenate_js'] = ! empty( $input['minify_concatenate_js'] ) ? 1 : 0;
|
||||
|
||||
$input['defer_all_js'] = ! empty( $input['defer_all_js'] ) ? 1 : 0;
|
||||
$input['defer_all_js_safe'] = ! empty( $input['defer_all_js_safe'] ) ? 1 : 0;
|
||||
$input['delay_js'] = $this->sanitize_checkbox( $input, 'delay_js' );
|
||||
$input['delay_js_scripts'] = ! empty( $input['delay_js_scripts'] ) ? rocket_sanitize_textarea_field( 'delay_js_scripts', $input['delay_js_scripts'] ) : [];
|
||||
|
||||
// If Defer JS is deactivated, set Safe Mode for Jquery to active.
|
||||
if ( 0 === $input['defer_all_js'] ) {
|
||||
$input['defer_all_js_safe'] = 1;
|
||||
}
|
||||
|
||||
$input['embeds'] = ! empty( $input['embeds'] ) ? 1 : 0;
|
||||
$input['emoji'] = ! empty( $input['emoji'] ) ? 1 : 0;
|
||||
|
||||
$input['lazyload'] = ! empty( $input['lazyload'] ) ? 1 : 0;
|
||||
$input['lazyload_iframes'] = ! empty( $input['lazyload_iframes'] ) ? 1 : 0;
|
||||
$input['lazyload_youtube'] = ! empty( $input['lazyload_youtube'] ) ? 1 : 0;
|
||||
|
||||
// If iframes lazyload is not checked, uncheck youtube thumbnail option too.
|
||||
if ( 0 === $input['lazyload_iframes'] ) {
|
||||
$input['lazyload_youtube'] = 0;
|
||||
}
|
||||
|
||||
// Option : Purge interval.
|
||||
$input['purge_cron_interval'] = isset( $input['purge_cron_interval'] ) ? (int) $input['purge_cron_interval'] : $this->options->get( 'purge_cron_interval' );
|
||||
|
||||
$allowed_cron_units = [
|
||||
'MINUTE_IN_SECONDS' => 1,
|
||||
'HOUR_IN_SECONDS' => 1,
|
||||
'DAY_IN_SECONDS' => 1,
|
||||
];
|
||||
|
||||
$input['purge_cron_unit'] = isset( $input['purge_cron_unit'], $allowed_cron_units[ $input['purge_cron_unit'] ] ) ? $input['purge_cron_unit'] : $this->options->get( 'purge_cron_unit' );
|
||||
|
||||
// Force a minimum 10 minutes value for the purge interval.
|
||||
if ( $input['purge_cron_interval'] < 10 && 'MINUTE_IN_SECONDS' === $input['purge_cron_unit'] ) {
|
||||
$input['purge_cron_interval'] = 10;
|
||||
}
|
||||
|
||||
// Option : Prefetch DNS requests.
|
||||
$input['dns_prefetch'] = $this->sanitize_dns_prefetch( $input );
|
||||
|
||||
// Option : Empty the cache of the following pages when updating a post.
|
||||
if ( ! empty( $input['cache_purge_pages'] ) ) {
|
||||
$input['cache_purge_pages'] = rocket_sanitize_textarea_field( 'cache_purge_pages', $input['cache_purge_pages'] );
|
||||
} else {
|
||||
$input['cache_purge_pages'] = [];
|
||||
}
|
||||
|
||||
// Option : Never cache the following pages.
|
||||
if ( ! empty( $input['cache_reject_uri'] ) ) {
|
||||
$input['cache_reject_uri'] = rocket_sanitize_textarea_field( 'cache_reject_uri', $input['cache_reject_uri'] );
|
||||
} else {
|
||||
$input['cache_reject_uri'] = [];
|
||||
}
|
||||
|
||||
// Option : Don't cache pages that use the following cookies.
|
||||
if ( ! empty( $input['cache_reject_cookies'] ) ) {
|
||||
$input['cache_reject_cookies'] = rocket_sanitize_textarea_field( 'cache_reject_cookies', $input['cache_reject_cookies'] );
|
||||
} else {
|
||||
$input['cache_reject_cookies'] = [];
|
||||
}
|
||||
|
||||
// Option : Cache pages that use the following query strings (GET parameters).
|
||||
if ( ! empty( $input['cache_query_strings'] ) ) {
|
||||
$input['cache_query_strings'] = rocket_sanitize_textarea_field( 'cache_query_strings', $input['cache_query_strings'] );
|
||||
} else {
|
||||
$input['cache_query_strings'] = [];
|
||||
}
|
||||
|
||||
// Option : Never send cache pages for these user agents.
|
||||
if ( ! empty( $input['cache_reject_ua'] ) ) {
|
||||
$input['cache_reject_ua'] = rocket_sanitize_textarea_field( 'cache_reject_ua', $input['cache_reject_ua'] );
|
||||
} else {
|
||||
$input['cache_reject_ua'] = [];
|
||||
}
|
||||
|
||||
// Option : CSS files to exclude from the minification.
|
||||
if ( ! empty( $input['exclude_css'] ) ) {
|
||||
$input['exclude_css'] = rocket_sanitize_textarea_field( 'exclude_css', $input['exclude_css'] );
|
||||
} else {
|
||||
$input['exclude_css'] = [];
|
||||
}
|
||||
|
||||
// Option : JS files to exclude from the minification.
|
||||
if ( ! empty( $input['exclude_js'] ) ) {
|
||||
$input['exclude_js'] = rocket_sanitize_textarea_field( 'exclude_js', $input['exclude_js'] );
|
||||
} else {
|
||||
$input['exclude_js'] = [];
|
||||
}
|
||||
|
||||
// Option: inline JS patterns to exclude from combine JS.
|
||||
if ( ! empty( $input['exclude_inline_js'] ) ) {
|
||||
$input['exclude_inline_js'] = rocket_sanitize_textarea_field( 'exclude_inline_js', $input['exclude_inline_js'] );
|
||||
} else {
|
||||
$input['exclude_inline_js'] = [];
|
||||
}
|
||||
|
||||
// Option: Async CSS.
|
||||
$input['async_css'] = ! empty( $input['async_css'] ) ? 1 : 0;
|
||||
|
||||
// Option: Critical CSS.
|
||||
$input['critical_css'] = ! empty( $input['critical_css'] ) ? wp_strip_all_tags( str_replace( [ '<style>', '</style>' ], '', $input['critical_css'] ), [ "\'", '\"' ] ) : '';
|
||||
|
||||
// Database options.
|
||||
$input['database_revisions'] = ! empty( $input['database_revisions'] ) ? 1 : 0;
|
||||
$input['database_auto_drafts'] = ! empty( $input['database_auto_drafts'] ) ? 1 : 0;
|
||||
$input['database_trashed_posts'] = ! empty( $input['database_trashed_posts'] ) ? 1 : 0;
|
||||
$input['database_spam_comments'] = ! empty( $input['database_spam_comments'] ) ? 1 : 0;
|
||||
$input['database_trashed_comments'] = ! empty( $input['database_trashed_comments'] ) ? 1 : 0;
|
||||
$input['database_expired_transients'] = ! empty( $input['database_expired_transients'] ) ? 1 : 0;
|
||||
$input['database_all_transients'] = ! empty( $input['database_all_transients'] ) ? 1 : 0;
|
||||
$input['database_optimize_tables'] = ! empty( $input['database_optimize_tables'] ) ? 1 : 0;
|
||||
$input['schedule_automatic_cleanup'] = ! empty( $input['schedule_automatic_cleanup'] ) ? 1 : 0;
|
||||
|
||||
$cleanup_frequencies = [
|
||||
'daily' => 1,
|
||||
'weekly' => 1,
|
||||
'monthly' => 1,
|
||||
];
|
||||
|
||||
$input['automatic_cleanup_frequency'] = isset( $input['automatic_cleanup_frequency'], $cleanup_frequencies[ $input['automatic_cleanup_frequency'] ] ) ? $input['automatic_cleanup_frequency'] : $this->options->get( 'automatic_cleanup_frequency' );
|
||||
|
||||
if ( 1 !== $input['schedule_automatic_cleanup'] && ( 'daily' !== $input['automatic_cleanup_frequency'] || 'weekly' !== $input['automatic_cleanup_frequency'] || 'monthly' !== $input['automatic_cleanup_frequency'] ) ) {
|
||||
$input['automatic_cleanup_frequency'] = $this->options->get( 'automatic_cleanup_frequency' );
|
||||
}
|
||||
|
||||
// Options: Activate bot preload.
|
||||
$input['manual_preload'] = ! empty( $input['manual_preload'] ) ? 1 : 0;
|
||||
|
||||
// Option: activate sitemap preload.
|
||||
$input['sitemap_preload'] = ! empty( $input['sitemap_preload'] ) ? 1 : 0;
|
||||
|
||||
// Option : XML sitemaps URLs.
|
||||
if ( ! empty( $input['sitemaps'] ) ) {
|
||||
if ( ! is_array( $input['sitemaps'] ) ) {
|
||||
$input['sitemaps'] = explode( "\n", $input['sitemaps'] );
|
||||
}
|
||||
$input['sitemaps'] = array_map( 'trim', $input['sitemaps'] );
|
||||
$input['sitemaps'] = array_map( 'rocket_sanitize_xml', $input['sitemaps'] );
|
||||
$input['sitemaps'] = array_filter( $input['sitemaps'] );
|
||||
$input['sitemaps'] = array_unique( $input['sitemaps'] );
|
||||
} else {
|
||||
$input['sitemaps'] = [];
|
||||
}
|
||||
|
||||
// Option : fonts to preload.
|
||||
$input['preload_fonts'] = ! empty( $input['preload_fonts'] ) ? $this->sanitize_fonts( $input['preload_fonts'] ) : [];
|
||||
|
||||
// Options : CloudFlare.
|
||||
$input['do_cloudflare'] = ! empty( $input['do_cloudflare'] ) ? 1 : 0;
|
||||
$input['cloudflare_email'] = isset( $input['cloudflare_email'] ) ? sanitize_email( $input['cloudflare_email'] ) : '';
|
||||
$input['cloudflare_api_key'] = isset( $input['cloudflare_api_key'] ) ? sanitize_text_field( $input['cloudflare_api_key'] ) : '';
|
||||
$input['cloudflare_zone_id'] = isset( $input['cloudflare_zone_id'] ) ? sanitize_text_field( $input['cloudflare_zone_id'] ) : '';
|
||||
$input['cloudflare_devmode'] = isset( $input['cloudflare_devmode'] ) && is_numeric( $input['cloudflare_devmode'] ) ? (int) $input['cloudflare_devmode'] : 0;
|
||||
$input['cloudflare_auto_settings'] = ( isset( $input['cloudflare_auto_settings'] ) && is_numeric( $input['cloudflare_auto_settings'] ) ) ? (int) $input['cloudflare_auto_settings'] : 0;
|
||||
$input['cloudflare_protocol_rewrite'] = ! empty( $input['cloudflare_protocol_rewrite'] ) ? 1 : 0;
|
||||
|
||||
if ( defined( 'WP_ROCKET_CF_API_KEY' ) ) {
|
||||
$input['cloudflare_api_key'] = WP_ROCKET_CF_API_KEY;
|
||||
}
|
||||
|
||||
// Options: Sucuri cache. And yeah, there's a typo, but now it's too late to fix ^^'.
|
||||
$input['sucury_waf_cache_sync'] = ! empty( $input['sucury_waf_cache_sync'] ) ? 1 : 0;
|
||||
|
||||
if ( defined( 'WP_ROCKET_SUCURI_API_KEY' ) ) {
|
||||
$input['sucury_waf_api_key'] = WP_ROCKET_SUCURI_API_KEY;
|
||||
} else {
|
||||
$input['sucury_waf_api_key'] = isset( $input['sucury_waf_api_key'] ) ? sanitize_text_field( $input['sucury_waf_api_key'] ) : '';
|
||||
}
|
||||
|
||||
$input['sucury_waf_api_key'] = trim( $input['sucury_waf_api_key'] );
|
||||
|
||||
if ( ! Sucuri_Subscriber::is_api_key_valid( $input['sucury_waf_api_key'] ) ) {
|
||||
$input['sucury_waf_api_key'] = '';
|
||||
|
||||
if ( $input['sucury_waf_cache_sync'] && empty( $input['ignore'] ) ) {
|
||||
add_settings_error( 'general', 'sucuri_waf_api_key_invalid', __( 'Sucuri Add-on: The API key for the Sucuri firewall must be in format <code>{32 characters}/{32 characters}</code>.', 'rocket' ), 'error' );
|
||||
}
|
||||
}
|
||||
|
||||
// Options : Heartbeat.
|
||||
$choices = [
|
||||
'' => 1,
|
||||
'reduce_periodicity' => 1,
|
||||
'disable' => 1,
|
||||
];
|
||||
|
||||
$input['control_heartbeat'] = ! empty( $input['control_heartbeat'] ) ? 1 : 0;
|
||||
$input['heartbeat_site_behavior'] = isset( $input['heartbeat_site_behavior'], $choices[ $input['heartbeat_site_behavior'] ] ) ? $input['heartbeat_site_behavior'] : '';
|
||||
$input['heartbeat_admin_behavior'] = isset( $input['heartbeat_admin_behavior'], $choices[ $input['heartbeat_admin_behavior'] ] ) ? $input['heartbeat_admin_behavior'] : '';
|
||||
$input['heartbeat_editor_behavior'] = isset( $input['heartbeat_editor_behavior'], $choices[ $input['heartbeat_editor_behavior'] ] ) ? $input['heartbeat_editor_behavior'] : '';
|
||||
|
||||
// Option : CDN.
|
||||
$input['cdn'] = ! empty( $input['cdn'] ) ? 1 : 0;
|
||||
|
||||
// Option : CDN Cnames.
|
||||
if ( isset( $input['cdn_cnames'] ) ) {
|
||||
$input['cdn_cnames'] = array_map( 'sanitize_text_field', $input['cdn_cnames'] );
|
||||
$input['cdn_cnames'] = array_filter( $input['cdn_cnames'] );
|
||||
} else {
|
||||
$input['cdn_cnames'] = [];
|
||||
}
|
||||
|
||||
if ( ! $input['cdn_cnames'] ) {
|
||||
$input['cdn_zone'] = [];
|
||||
} else {
|
||||
$total_cdn_cnames = max( array_keys( $input['cdn_cnames'] ) );
|
||||
for ( $i = 0; $i <= $total_cdn_cnames; $i++ ) {
|
||||
if ( ! isset( $input['cdn_cnames'][ $i ] ) ) {
|
||||
unset( $input['cdn_zone'][ $i ] );
|
||||
} else {
|
||||
$allowed_cdn_zones = [
|
||||
'all' => 1,
|
||||
'images' => 1,
|
||||
'css_and_js' => 1,
|
||||
'css' => 1,
|
||||
'js' => 1,
|
||||
];
|
||||
|
||||
$input['cdn_zone'][ $i ] = isset( $allowed_cdn_zones[ $input['cdn_zone'][ $i ] ] ) ? $input['cdn_zone'][ $i ] : 'all';
|
||||
}
|
||||
}
|
||||
|
||||
$input['cdn_cnames'] = array_values( $input['cdn_cnames'] );
|
||||
$input['cdn_cnames'] = array_map( 'untrailingslashit', $input['cdn_cnames'] );
|
||||
|
||||
ksort( $input['cdn_zone'] );
|
||||
|
||||
$input['cdn_zone'] = array_values( $input['cdn_zone'] );
|
||||
}
|
||||
|
||||
// Option : Files to exclude from the CDN process.
|
||||
if ( ! empty( $input['cdn_reject_files'] ) ) {
|
||||
$input['cdn_reject_files'] = rocket_sanitize_textarea_field( 'cdn_reject_files', $input['cdn_reject_files'] );
|
||||
} else {
|
||||
$input['cdn_reject_files'] = [];
|
||||
}
|
||||
|
||||
$input['varnish_auto_purge'] = ! empty( $input['varnish_auto_purge'] ) ? 1 : 0;
|
||||
|
||||
if ( ! rocket_valid_key() ) {
|
||||
$checked = rocket_check_key();
|
||||
}
|
||||
|
||||
if ( isset( $checked ) && is_array( $checked ) ) {
|
||||
$input['consumer_key'] = $checked['consumer_key'];
|
||||
$input['consumer_email'] = $checked['consumer_email'];
|
||||
$input['secret_key'] = $checked['secret_key'];
|
||||
}
|
||||
|
||||
if ( ! empty( $input['secret_key'] ) && empty( $input['ignore'] ) && rocket_valid_key() ) {
|
||||
// Add a "Settings saved." admin notice only if not already added.
|
||||
$notices = array_merge( (array) $wp_settings_errors, (array) get_transient( 'settings_errors' ) );
|
||||
$notices = array_filter(
|
||||
$notices,
|
||||
function( $error ) {
|
||||
if ( ! $error || ! is_array( $error ) ) {
|
||||
return false;
|
||||
}
|
||||
if ( ! isset( $error['setting'], $error['code'], $error['type'] ) ) {
|
||||
return false;
|
||||
}
|
||||
return 'general' === $error['setting'] && 'settings_updated' === $error['code'] && 'updated' === $error['type'];
|
||||
}
|
||||
);
|
||||
|
||||
if ( ! $notices ) {
|
||||
add_settings_error( 'general', 'settings_updated', __( 'Settings saved.', 'rocket' ), 'updated' );
|
||||
}
|
||||
}
|
||||
|
||||
unset( $input['ignore'] );
|
||||
|
||||
return apply_filters( 'rocket_input_sanitize', $input );
|
||||
}
|
||||
|
||||
/**
|
||||
* Sanitizes the returned value of a checkbox
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $array Options array.
|
||||
* @param string $key Array key to check.
|
||||
* @return int
|
||||
*/
|
||||
public function sanitize_checkbox( $array, $key ) {
|
||||
return isset( $array[ $key ] ) && ! empty( $array[ $key ] ) ? 1 : 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sanitizes the DNS Prefetch sub-option value
|
||||
*
|
||||
* @since 3.5.1
|
||||
*
|
||||
* @param array $input Array of values for the WP Rocket settings option.
|
||||
* @return array Sanitized array for the DNS Prefetch sub-option
|
||||
*/
|
||||
private function sanitize_dns_prefetch( array $input ) {
|
||||
if ( empty( $input['dns_prefetch'] ) ) {
|
||||
return [];
|
||||
}
|
||||
|
||||
$value = $input['dns_prefetch'];
|
||||
|
||||
if ( ! is_array( $value ) ) {
|
||||
$value = explode( "\n", $value );
|
||||
}
|
||||
|
||||
$urls = [];
|
||||
|
||||
foreach ( $value as $url ) {
|
||||
$url = trim( $url );
|
||||
|
||||
if ( empty( $url ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$url = preg_replace( '/^(?:https?)?:?\/{3,}/i', 'http://', $url );
|
||||
$url = esc_url_raw( $url );
|
||||
|
||||
if ( empty( $url ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$urls[] = $url;
|
||||
}
|
||||
|
||||
if ( empty( $urls ) ) {
|
||||
return [];
|
||||
}
|
||||
|
||||
return array_unique(
|
||||
array_map(
|
||||
function( $url ) {
|
||||
return '//' . wp_parse_url( $url, PHP_URL_HOST );
|
||||
},
|
||||
$urls
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Sanitize a list of font file paths.
|
||||
*
|
||||
* @since 3.6
|
||||
*
|
||||
* @param array|string $files List of filepaths to sanitize. Can be an array of strings or a string listing paths separated by "\n".
|
||||
* @return array Sanitized filepaths.
|
||||
*/
|
||||
private function sanitize_fonts( $files ) {
|
||||
if ( ! is_array( $files ) ) {
|
||||
$files = explode( "\n", trim( $files ) );
|
||||
}
|
||||
|
||||
$files = array_map( [ $this, 'sanitize_font' ], $files );
|
||||
|
||||
return array_unique( array_filter( $files ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Sanitize an entry for the preload fonts option.
|
||||
*
|
||||
* @since 3.6
|
||||
*
|
||||
* @param string $file URL or path to a font file.
|
||||
* @return string|bool
|
||||
*/
|
||||
private function sanitize_font( $file ) {
|
||||
if ( ! is_string( $file ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$file = trim( $file );
|
||||
|
||||
if ( empty( $file ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$parsed_url = wp_parse_url( $file );
|
||||
$hosts = $this->get_hosts();
|
||||
|
||||
if ( ! empty( $parsed_url['host'] ) ) {
|
||||
$match = false;
|
||||
|
||||
foreach ( $hosts as $host ) {
|
||||
if ( false !== strpos( $file, $host ) ) {
|
||||
$match = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if ( ! $match ) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
$file = str_replace( [ 'http:', 'https:' ], '', $file );
|
||||
$file = str_replace( $hosts, '', $file );
|
||||
$file = '/' . ltrim( $file, '/' );
|
||||
|
||||
$ext = strtolower( pathinfo( $parsed_url['path'], PATHINFO_EXTENSION ) );
|
||||
|
||||
if ( ! in_array( $ext, $this->font_formats, true ) ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $file;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets an array of valid hosts.
|
||||
*
|
||||
* @since 3.6
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
private function get_hosts() {
|
||||
if ( isset( $this->hosts ) ) {
|
||||
return $this->hosts;
|
||||
}
|
||||
|
||||
$urls = (array) $this->options->get( 'cdn_cnames', [] );
|
||||
$urls[] = home_url();
|
||||
$urls = array_map( 'rocket_add_url_protocol', $urls );
|
||||
|
||||
foreach ( $urls as $url ) {
|
||||
$parsed_url = get_rocket_parse_url( $url );
|
||||
|
||||
if ( empty( $parsed_url['host'] ) ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$parsed_url['path'] = ( '/' === $parsed_url['path'] ) ? '' : $parsed_url['path'];
|
||||
|
||||
$this->hosts[] = "//{$parsed_url['host']}{$parsed_url['path']}";
|
||||
}
|
||||
|
||||
if ( empty( $this->hosts ) ) {
|
||||
$this->hosts = [];
|
||||
}
|
||||
|
||||
return $this->hosts;
|
||||
}
|
||||
}
|
@@ -0,0 +1,194 @@
|
||||
<?php
|
||||
namespace WP_Rocket\Engine\Admin\Settings;
|
||||
|
||||
use Imagify_Partner;
|
||||
use WP_Rocket\Event_Management\Subscriber_Interface;
|
||||
|
||||
/**
|
||||
* WP Rocket settings page subscriber.
|
||||
*
|
||||
* @since 3.5.5 Moves into the new architecture.
|
||||
* @since 3.3
|
||||
*/
|
||||
class Subscriber implements Subscriber_Interface {
|
||||
/**
|
||||
* Page instance
|
||||
*
|
||||
* @var Page
|
||||
*/
|
||||
private $page;
|
||||
|
||||
/**
|
||||
* Creates an instance of the object.
|
||||
*
|
||||
* @param Page $page Page instance.
|
||||
*/
|
||||
public function __construct( Page $page ) {
|
||||
$this->page = $page;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return an array of events that this subscriber wants to listen to.
|
||||
*
|
||||
* @since 3.3
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function get_subscribed_events() {
|
||||
return [
|
||||
'admin_menu' => 'add_admin_page',
|
||||
'admin_init' => 'configure',
|
||||
'wp_ajax_rocket_refresh_customer_data' => 'refresh_customer_data',
|
||||
'wp_ajax_rocket_toggle_option' => 'toggle_option',
|
||||
'rocket_settings_menu_navigation' => [
|
||||
[ 'add_menu_tools_page' ],
|
||||
[ 'add_imagify_page', 9 ],
|
||||
[ 'add_tutorials_page', 11 ],
|
||||
],
|
||||
'admin_enqueue_scripts' => 'enqueue_rocket_scripts',
|
||||
'script_loader_tag' => [ 'async_wistia_script', 10, 2 ],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Enqueues WP Rocket scripts on the settings page
|
||||
*
|
||||
* @since 3.6
|
||||
*
|
||||
* @param string $hook The current admin page.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function enqueue_rocket_scripts( $hook ) {
|
||||
$this->page->enqueue_rocket_scripts( $hook );
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds the async attribute to the Wistia script
|
||||
*
|
||||
* @param string $tag The <script> tag for the enqueued script.
|
||||
* @param string $handle The script's registered handle.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function async_wistia_script( $tag, $handle ) {
|
||||
return $this->page->async_wistia_script( $tag, $handle );
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds plugin page to the Settings menu.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function add_admin_page() {
|
||||
add_options_page(
|
||||
$this->page->get_title(),
|
||||
/**
|
||||
* Filters the menu title to display in the Settings sub-menu
|
||||
*
|
||||
* @since 3.7.4
|
||||
*
|
||||
* @param string $menu_title The text to be used for the menu.
|
||||
*/
|
||||
apply_filters( 'rocket_menu_title', $this->page->get_title() ),
|
||||
$this->page->get_capability(),
|
||||
$this->page->get_slug(),
|
||||
[ $this->page, 'render_page' ]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers the settings, page sections, fields sections and fields.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function configure() {
|
||||
$this->page->configure();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets customer data to refresh it on the dashboard with AJAX.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function refresh_customer_data() {
|
||||
check_ajax_referer( 'rocket-ajax' );
|
||||
|
||||
if ( ! current_user_can( 'rocket_manage_options' ) ) {
|
||||
wp_die();
|
||||
}
|
||||
|
||||
delete_transient( 'wp_rocket_customer_data' );
|
||||
|
||||
return wp_send_json_success( $this->page->customer_data() );
|
||||
}
|
||||
|
||||
/**
|
||||
* Toggle sliding checkboxes option value.
|
||||
*
|
||||
* @since 3.0
|
||||
*/
|
||||
public function toggle_option() {
|
||||
$this->page->toggle_option();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add Tools section to navigation.
|
||||
*
|
||||
* @since 3.0
|
||||
*
|
||||
* @param array $navigation Array of menu items.
|
||||
* @return array
|
||||
*/
|
||||
public function add_menu_tools_page( $navigation ) {
|
||||
$navigation['tools'] = [
|
||||
'id' => 'tools',
|
||||
'title' => __( 'Tools', 'rocket' ),
|
||||
'menu_description' => __( 'Import, Export, Rollback', 'rocket' ),
|
||||
];
|
||||
|
||||
return $navigation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add Imagify section to navigation.
|
||||
*
|
||||
* @since 3.2
|
||||
*
|
||||
* @param array $navigation Array of menu items.
|
||||
* @return array
|
||||
*/
|
||||
public function add_imagify_page( $navigation ) {
|
||||
if ( Imagify_Partner::has_imagify_api_key() ) {
|
||||
return $navigation;
|
||||
}
|
||||
|
||||
$navigation['imagify'] = [
|
||||
'id' => 'imagify',
|
||||
'title' => __( 'Image Optimization', 'rocket' ),
|
||||
'menu_description' => __( 'Compress your images', 'rocket' ),
|
||||
];
|
||||
|
||||
return $navigation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add Tutorials section to navigation.
|
||||
*
|
||||
* @since 3.4
|
||||
*
|
||||
* @param array $navigation Array of menu items.
|
||||
* @return array
|
||||
*/
|
||||
public function add_tutorials_page( $navigation ) {
|
||||
$navigation['tutorials'] = [
|
||||
'id' => 'tutorials',
|
||||
'title' => __( 'Tutorials', 'rocket' ),
|
||||
'menu_description' => __( 'Getting started and how to videos', 'rocket' ),
|
||||
];
|
||||
|
||||
return $navigation;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user