Plugin Directory

Changeset 3240351


Ignore:
Timestamp:
02/13/2025 10:22:19 PM (12 months ago)
Author:
solidwp
Message:

Update to version 1.4.1 from GitHub

Location:
solid-performance
Files:
22 added
4 deleted
54 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solid-performance/tags/1.4.1/readme.txt

    r3239712 r3240351  
    55Requires at least: 6.4
    66Tested up to: 6.7.2
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 1.4.1 =
     92
     93* Update dependencies to shrink vendor folder.
     94
    9195= 1.4.0 =
    9296
  • solid-performance/tags/1.4.1/solid-performance.php

    r3239731 r3240351  
    55 * Author: SolidWP
    66 * Author URI: https://go.solidwp.com/performance-author
    7  * Version: 1.4.0
     7 * Version: 1.4.1
    88 * Text Domain: solid-performance
    99 * Domain Path: /lang
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Cache_Count.php

    r3239731 r3240351  
    7272            'properties' => [
    7373                'count' => [
    74                     'description' => esc_html__( 'How many cached pages this site has across all compression types', 'LION' ),
     74                    'description' => esc_html__( 'How many cached pages this site has across all compression types', 'solid-performance' ),
    7575                    'type'        => 'int',
    7676                    'readonly'    => true,
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Clear.php

    r3239731 r3240351  
    7171            return new WP_Error(
    7272                'solid_performance_page_cache_clear_error',
    73                 __( 'The site is currently preloading. Cancel preloading or try again later.', 'LION' ),
     73                __( 'The site is currently preloading. Cancel preloading or try again later.', 'solid-performance' ),
    7474            );
    7575        }
     
    8080            return new WP_Error(
    8181                'solid_performance_page_cache_clear_error',
    82                 __( 'Page cache could not be cleared', 'LION' ),
     82                __( 'Page cache could not be cleared', 'solid-performance' ),
    8383            );
    8484        }
     
    8787            [
    8888                'code'    => 'solid_performance_page_cache_cleared',
    89                 'message' => __( 'Page cache cleared successfully', 'LION' ),
     89                'message' => __( 'Page cache cleared successfully', 'solid-performance' ),
    9090            ]
    9191        );
     
    102102            'properties' => [
    103103                'code'    => [
    104                     'description' => esc_html__( 'The identification code of the action.', 'LION' ),
     104                    'description' => esc_html__( 'The identification code of the action.', 'solid-performance' ),
    105105                    'type'        => 'string',
    106106                    'enum'        => [
     
    111111                ],
    112112                'message' => [
    113                     'description' => esc_html__( 'The formatted message of the action change.', 'LION' ),
     113                    'description' => esc_html__( 'The formatted message of the action change.', 'solid-performance' ),
    114114                    'type'        => 'string',
    115115                    'readonly'    => true,
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Debug.php

    r3239731 r3240351  
    8484                self::PARAM_STATE => [
    8585                    'type'        => 'string',
    86                     'description' => esc_html__( 'The state of the page cache debug mode.', 'LION' ),
     86                    'description' => esc_html__( 'The state of the page cache debug mode.', 'solid-performance' ),
    8787                    'enum'        => [
    8888                        'on',
     
    104104            'properties' => [
    105105                'enabled' => [
    106                     'description' => esc_html__( 'The status of the page cache.', 'LION' ),
     106                    'description' => esc_html__( 'The status of the page cache.', 'solid-performance' ),
    107107                    'type'        => 'boolean',
    108108                    'readonly'    => true,
    109109                ],
    110110                'code'    => [
    111                     'description' => esc_html__( 'The identification code of the setting state.', 'LION' ),
     111                    'description' => esc_html__( 'The identification code of the setting state.', 'solid-performance' ),
    112112                    'type'        => 'string',
    113113                    'enum'        => [
     
    118118                ],
    119119                'message' => [
    120                     'description' => esc_html__( 'The formatted message of the setting state.', 'LION' ),
     120                    'description' => esc_html__( 'The formatted message of the setting state.', 'solid-performance' ),
    121121                    'type'        => 'string',
    122122                    'readonly'    => true,
     
    141141                    'enabled' => true,
    142142                    'code'    => 'solid_performance_page_cache_debug_mode_on',
    143                     'message' => __( 'Page cache debug mode is enabled', 'LION' ),
     143                    'message' => __( 'Page cache debug mode is enabled', 'solid-performance' ),
    144144                ]
    145145            );
     
    150150                'enabled' => false,
    151151                'code'    => 'solid_performance_page_cache_debug_mode_off',
    152                 'message' => __( 'Page cache debug mode is disabled', 'LION' ),
     152                'message' => __( 'Page cache debug mode is disabled', 'solid-performance' ),
    153153            ]
    154154        );
     
    172172                    'enabled' => true,
    173173                    'code'    => 'solid_performance_page_cache_debug_mode_on',
    174                     'message' => __( 'Page cache debug mode is enabled', 'LION' ),
     174                    'message' => __( 'Page cache debug mode is enabled', 'solid-performance' ),
    175175                ]
    176176            );
     
    181181                'enabled' => false,
    182182                'code'    => 'solid_performance_page_cache_debug_mode_off',
    183                 'message' => __( 'Page cache debug mode is disabled', 'LION' ),
     183                'message' => __( 'Page cache debug mode is disabled', 'solid-performance' ),
    184184            ]
    185185        );
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Off.php

    r3239731 r3240351  
    6565            return new WP_Error(
    6666                'solid_performance_page_cache_not_disabled',
    67                 __( 'Page cache could not be disabled', 'LION' ),
     67                __( 'Page cache could not be disabled', 'solid-performance' ),
    6868            );
    6969        }
     
    7373                'enabled' => false,
    7474                'code'    => 'solid_performance_page_cache_off',
    75                 'message' => __( 'Page cache disabled successfully', 'LION' ),
     75                'message' => __( 'Page cache disabled successfully', 'solid-performance' ),
    7676            ]
    7777        );
     
    8888            'properties' => [
    8989                'enabled' => [
    90                     'description' => esc_html__( 'The current state of page caching.', 'LION' ),
     90                    'description' => esc_html__( 'The current state of page caching.', 'solid-performance' ),
    9191                    'type'        => 'boolean',
    9292                    'readonly'    => true,
    9393                ],
    9494                'code'    => [
    95                     'description' => esc_html__( 'The identification code of the setting.', 'LION' ),
     95                    'description' => esc_html__( 'The identification code of the setting.', 'solid-performance' ),
    9696                    'type'        => 'string',
    9797                    'enum'        => [
     
    102102                ],
    103103                'message' => [
    104                     'description' => esc_html__( 'The formatted message of the setting change.', 'LION' ),
     104                    'description' => esc_html__( 'The formatted message of the setting change.', 'solid-performance' ),
    105105                    'type'        => 'string',
    106106                    'readonly'    => true,
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/On.php

    r3239731 r3240351  
    6565            return new WP_Error(
    6666                'solid_performance_page_cache_not_enabled',
    67                 __( 'Page cache could not be enabled', 'LION' ),
     67                __( 'Page cache could not be enabled', 'solid-performance' ),
    6868            );
    6969        }
     
    7373                'enabled' => true,
    7474                'code'    => 'solid_performance_page_cache_enabled',
    75                 'message' => __( 'Page cache enabled successfully', 'LION' ),
     75                'message' => __( 'Page cache enabled successfully', 'solid-performance' ),
    7676            ]
    7777        );
     
    8888            'properties' => [
    8989                'enabled' => [
    90                     'description' => esc_html__( 'The current state of page caching.', 'LION' ),
     90                    'description' => esc_html__( 'The current state of page caching.', 'solid-performance' ),
    9191                    'type'        => 'boolean',
    9292                    'readonly'    => true,
    9393                ],
    9494                'code'    => [
    95                     'description' => esc_html__( 'The identification code of the setting.', 'LION' ),
     95                    'description' => esc_html__( 'The identification code of the setting.', 'solid-performance' ),
    9696                    'type'        => 'string',
    9797                    'enum'        => [
     
    102102                ],
    103103                'message' => [
    104                     'description' => esc_html__( 'The formatted message of the setting change.', 'LION' ),
     104                    'description' => esc_html__( 'The formatted message of the setting change.', 'solid-performance' ),
    105105                    'type'        => 'string',
    106106                    'readonly'    => true,
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Preload.php

    r3239731 r3240351  
    105105                            'code'      => self::CODE_COMPLETED,
    106106                            /* translators: %s: The human-readable duration. */
    107                             'message'   => sprintf( __( 'Preloading completed in %s.', 'LION' ), $state->duration ),
     107                            'message'   => sprintf( __( 'Preloading completed in %s.', 'solid-performance' ), $state->duration ),
    108108                            'running'   => false,
    109109                            'progress'  => $this->preloader->progress(),
     
    116116                            'code'      => self::CODE_CANCELED,
    117117                            /* translators: %s: The source of what initiated or canceled the preloader. */
    118                             'message'   => sprintf( __( 'Preloading canceled via "%s".', 'LION' ), $state->source ),
     118                            'message'   => sprintf( __( 'Preloading canceled via "%s".', 'solid-performance' ), $state->source ),
    119119                            'running'   => false,
    120120                            'progress'  => $this->preloader->progress(),
     
    141141                    'code'      => self::CODE_FAILED,
    142142                    /* translators: %s: The error message. */
    143                     'message'   => sprintf( __( 'Preloading Failed: %s', 'LION' ), $e->getMessage() ),
     143                    'message'   => sprintf( __( 'Preloading Failed: %s', 'solid-performance' ), $e->getMessage() ),
    144144                    'running'   => false,
    145145                    'progress'  => 0,
     
    153153                    'code'      => self::CODE_STALLED,
    154154                    /* translators: %s: The error message. */
    155                     'message'   => sprintf( __( 'Attempting to restart the Preloader. An error occurred: %s', 'LION' ), $e->getMessage() ),
     155                    'message'   => sprintf( __( 'Attempting to restart the Preloader. An error occurred: %s', 'solid-performance' ), $e->getMessage() ),
    156156                    'running'   => true,
    157157                    'progress'  => 0,
     
    170170                self::PARAM_FORCE => [
    171171                    'type'        => 'boolean',
    172                     'description' => esc_html__( 'Whether to force a full site preload.', 'LION' ),
     172                    'description' => esc_html__( 'Whether to force a full site preload.', 'solid-performance' ),
    173173                    'default'     => false,
    174174                    'required'    => false,
     
    188188            'properties' => [
    189189                'code'      => [
    190                     'description' => esc_html__( 'The identification code of the preloading state.', 'LION' ),
     190                    'description' => esc_html__( 'The identification code of the preloading state.', 'solid-performance' ),
    191191                    'type'        => 'string',
    192192                    'enum'        => self::CODES,
     
    194194                ],
    195195                'message'   => [
    196                     'description' => esc_html__( 'The message describing the current preloading state or action result.', 'LION' ),
     196                    'description' => esc_html__( 'The message describing the current preloading state or action result.', 'solid-performance' ),
    197197                    'type'        => 'string',
    198198                    'readonly'    => true,
    199199                ],
    200200                'source'    => [
    201                     'description' => esc_html__( 'The source of where the preloader started running.', 'LION' ),
     201                    'description' => esc_html__( 'The source of where the preloader started running.', 'solid-performance' ),
    202202                    'type'        => 'string',
    203203                    'enum'        => [
     
    208208                ],
    209209                'running'   => [
    210                     'description' => esc_html__( 'Indicates whether preloading is currently running.', 'LION' ),
     210                    'description' => esc_html__( 'Indicates whether preloading is currently running.', 'solid-performance' ),
    211211                    'type'        => 'boolean',
    212212                    'readonly'    => true,
    213213                ],
    214214                'progress'  => [
    215                     'description' => esc_html__( 'The progress of the preloading process as a percentage.', 'LION' ),
     215                    'description' => esc_html__( 'The progress of the preloading process as a percentage.', 'solid-performance' ),
    216216                    'type'        => 'integer',
    217217                    'minimum'     => 0,
     
    220220                ],
    221221                'preloadId' => [
    222                     'description' => esc_html__( 'The preload ID to determine if the current session has shown it yet.', 'LION' ),
     222                    'description' => esc_html__( 'The preload ID to determine if the current session has shown it yet.', 'solid-performance' ),
    223223                    'type'        => 'string',
    224224                    'readonly'    => true,
     
    263263                sprintf(
    264264                    /* translators: %s: The source of what initiated or canceled the preloader. */
    265                     __( 'A preloader is already running via "%s".', 'LION' ),
     265                    __( 'A preloader is already running via "%s".', 'solid-performance' ),
    266266                    $this->preloader->state()->get()->source
    267267                ),
     
    274274                self::CODE_RUNNING,
    275275                /* translators: %s: The error message. */
    276                 sprintf( __( 'Warning: %s', 'LION' ), $e->getMessage() )
     276                sprintf( __( 'Warning: %s', 'solid-performance' ), $e->getMessage() )
    277277            );
    278278        } catch ( Throwable $e ) {
     
    282282                self::CODE_COMPLETED,
    283283                /* translators: %s: The error message. */
    284                 sprintf( __( 'An error occurred: %s', 'LION' ), $e->getMessage() )
     284                sprintf( __( 'An error occurred: %s', 'solid-performance' ), $e->getMessage() )
    285285            );
    286286        }
    287287
    288         $force_text = $force ? __( 'Preload & Refresh All', 'LION' ) : __( 'Preload Uncached Pages', 'LION' );
     288        $force_text = $force ? __( 'Preload & Refresh All', 'solid-performance' ) : __( 'Preload Uncached Pages', 'solid-performance' );
    289289
    290290        return new WP_REST_Response(
     
    297297                        'Preparing to preload %s crawled sitemap URLs.',
    298298                        $this->preloader->count(),
    299                         'LION'
     299                        'solid-performance'
    300300                    ),
    301301                    number_format_i18n( (float) $this->preloader->count() )
     
    317317            [
    318318                'running'   => $this->preloader->is_running(),
    319                 'message'   => __( 'Preloading successfully canceled.', 'LION' ),
     319                'message'   => __( 'Preloading successfully canceled.', 'solid-performance' ),
    320320                'preloadId' => $state->id,
    321321            ]
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Regenerate.php

    r3239731 r3240351  
    6565            return new WP_Error(
    6666                'solid_performance_advanced_cache_not_regenerated',
    67                 __( 'Advanced cache file not regenerated', 'LION' ),
     67                __( 'Advanced cache file not regenerated', 'solid-performance' ),
    6868            );
    6969        }
     
    7272            [
    7373                'code'    => 'solid_performance_advanced_cache_regenerated',
    74                 'message' => __( 'Advanced cache file regenerated', 'LION' ),
     74                'message' => __( 'Advanced cache file regenerated', 'solid-performance' ),
    7575            ]
    7676        );
     
    8787            'properties' => [
    8888                'code'    => [
    89                     'description' => esc_html__( 'The identification code of the advanced cache regeneration action.', 'LION' ),
     89                    'description' => esc_html__( 'The identification code of the advanced cache regeneration action.', 'solid-performance' ),
    9090                    'type'        => 'string',
    9191                    'enum'        => [
     
    9696                ],
    9797                'message' => [
    98                     'description' => esc_html__( 'The formatted message of the advanced cache regeneration action.', 'LION' ),
     98                    'description' => esc_html__( 'The formatted message of the advanced cache regeneration action.', 'solid-performance' ),
    9999                    'type'        => 'string',
    100100                    'readonly'    => true,
  • solid-performance/tags/1.4.1/src/Performance/API/Routes/Page_Cache/Status.php

    r3239731 r3240351  
    6666                    'enabled' => true,
    6767                    'code'    => 'solid_performance_page_cache_on',
    68                     'message' => __( 'Page caching is currently enabled', 'LION' ),
     68                    'message' => __( 'Page caching is currently enabled', 'solid-performance' ),
    6969                ]
    7070            );
     
    7575                'enabled' => false,
    7676                'code'    => 'solid_performance_page_cache_off',
    77                 'message' => __( 'Page caching is currently disabled', 'LION' ),
     77                'message' => __( 'Page caching is currently disabled', 'solid-performance' ),
    7878            ]
    7979        );
     
    9090            'properties' => [
    9191                'enabled' => [
    92                     'description' => esc_html__( 'The current status of the page cache.', 'LION' ),
     92                    'description' => esc_html__( 'The current status of the page cache.', 'solid-performance' ),
    9393                    'type'        => 'boolean',
    9494                    'readonly'    => true,
    9595                ],
    9696                'code'    => [
    97                     'description' => esc_html__( 'The identification code of the setting state.', 'LION' ),
     97                    'description' => esc_html__( 'The identification code of the setting state.', 'solid-performance' ),
    9898                    'type'        => 'string',
    9999                    'enum'        => [
     
    104104                ],
    105105                'message' => [
    106                     'description' => esc_html__( 'The formatted message of the setting state.', 'LION' ),
     106                    'description' => esc_html__( 'The formatted message of the setting state.', 'solid-performance' ),
    107107                    'type'        => 'string',
    108108                    'readonly'    => true,
  • solid-performance/tags/1.4.1/src/Performance/Admin/Admin_Bar.php

    r3239731 r3240351  
    7777                    'id'     => self::PURGE_CACHE_CURRENT_ID,
    7878                    'parent' => self::MENU_ID,
    79                     'title'  => esc_html__( 'Clear Current Page', 'LION' ),
     79                    'title'  => esc_html__( 'Clear Current Page', 'solid-performance' ),
    8080                    'href'   => add_query_arg(
    8181                        [
  • solid-performance/tags/1.4.1/src/Performance/Admin/Purge_Listener.php

    r3239731 r3240351  
    6666
    6767        if ( ! current_user_can( 'manage_options' ) ) {
    68             wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'LION' ) );
     68            wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'solid-performance' ) );
    6969        }
    7070
     
    7777        // Prevent full page caches if a preloader is running.
    7878        if ( $this->preloader->is_running() ) {
    79             wp_die( esc_html__( 'The site is currently preloading. Cancel preloading or try again later.', 'LION' ) );
     79            wp_die( esc_html__( 'The site is currently preloading. Cancel preloading or try again later.', 'solid-performance' ) );
    8080        }
    8181
     
    103103
    104104        if ( ! current_user_can( 'manage_options' ) ) {
    105             wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'LION' ) );
     105            wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'solid-performance' ) );
    106106        }
    107107
  • solid-performance/tags/1.4.1/src/Performance/Admin/Settings_Page.php

    r3239731 r3240351  
    125125                                    'cache_dir'   => [
    126126                                        'type'        => 'string',
    127                                         'description' => esc_html__( 'The directory where cache files are stored.', 'LION' ),
     127                                        'description' => esc_html__( 'The directory where cache files are stored.', 'solid-performance' ),
    128128                                    ],
    129129                                    'enabled'     => [
    130130                                        'type'        => 'boolean',
    131                                         'description' => esc_html__( 'The current status of the page cache.', 'LION' ),
     131                                        'description' => esc_html__( 'The current status of the page cache.', 'solid-performance' ),
    132132                                    ],
    133133                                    'debug'       => [
    134134                                        'type'        => 'boolean',
    135                                         'description' => esc_html__( 'The current status of debug mode.', 'LION' ),
     135                                        'description' => esc_html__( 'The current status of debug mode.', 'solid-performance' ),
    136136                                    ],
    137137                                    'expiration'  => [
    138138                                        'type'        => 'integer',
    139                                         'description' => esc_html__( 'The number of seconds caches should exist before regenerating.', 'LION' ),
     139                                        'description' => esc_html__( 'The number of seconds caches should exist before regenerating.', 'solid-performance' ),
    140140                                    ],
    141141                                    'exclusions'  => [
    142142                                        'type'        => 'array',
    143                                         'description' => esc_html__( 'The rules to use in determining which urls should not be cached.', 'LION' ),
     143                                        'description' => esc_html__( 'The rules to use in determining which urls should not be cached.', 'solid-performance' ),
    144144                                        'items'       => [
    145145                                            'type' => 'string',
     
    151151                                            'enabled' => [
    152152                                                'type' => 'boolean',
    153                                                 'description' => esc_html__( 'Whether storing and serving compressed cache files is enabled.', 'LION' ),
     153                                                'description' => esc_html__( 'Whether storing and serving compressed cache files is enabled.', 'solid-performance' ),
    154154                                            ],
    155155                                        ],
     
    160160                                            'high_performance_mode' => [
    161161                                                'type' => 'boolean',
    162                                                 'description' => esc_html__( 'Preload with the maximum batch size. Automatically disabled if we encounter errors.', 'LION' ),
     162                                                'description' => esc_html__( 'Preload with the maximum batch size. Automatically disabled if we encounter errors.', 'solid-performance' ),
    163163                                            ],
    164164                                        ],
  • solid-performance/tags/1.4.1/src/Performance/Notices/Notice.php

    r3239731 r3240351  
    148148                sprintf(
    149149                    // Translators: a list of allowed values: info, success, warning, error.
    150                     __( 'Notice $type must be one of: %s', 'LION' ),
     150                    __( 'Notice $type must be one of: %s', 'solid-performance' ),
    151151                    implode( ', ', self::ALLOWED_TYPES )
    152152                )
     
    155155
    156156        if ( empty( $message ) ) {
    157             throw new InvalidArgumentException( __( 'The $message cannot be empty', 'LION' ) );
     157            throw new InvalidArgumentException( __( 'The $message cannot be empty', 'solid-performance' ) );
    158158        }
    159159
  • solid-performance/tags/1.4.1/src/Performance/Notices/Notices/Advanced_Cache.php

    r3239731 r3240351  
    6262            __(
    6363                '<strong>Solid Performance is not caching!</strong> visit the <a href="%1$s">Settings Page</a> and regenerate the advanced-cache.php file under the <em>Advanced</em> tab.',
    64                 'LION'
     64                'solid-performance'
    6565            ),
    6666            esc_url( admin_url( 'options-general.php?page=swpsp-settings' ) )
  • solid-performance/tags/1.4.1/src/Performance/Notices/Notices/Permalink.php

    r3239731 r3240351  
    5656            __(
    5757                '<strong>Solid Performance</strong> depends on a custom permalink structure. Please enable this in your <a href="%1$s">Permalink Settings</a> to begin speeding up your website.',
    58                 'LION'
     58                'solid-performance'
    5959            ),
    6060            esc_url( admin_url( 'options-permalink.php' ) )
  • solid-performance/tags/1.4.1/src/Performance/Notices/Notices/Wp_Cache_Constant.php

    r3239731 r3240351  
    5757            __(
    5858                '<strong>Solid Performance is not caching!</strong> <code>%1$s</code> is missing or set to false in wp-config.php.',
    59                 'LION'
     59                'solid-performance'
    6060            ),
    6161            'define( \'WP_CACHE\', true );'
  • solid-performance/tags/1.4.1/src/Performance/Preload/Preload_Scheduler.php

    r3239731 r3240351  
    109109                sprintf(
    110110                    /* translators: %s: The source of what initiated or canceled the preloader. */
    111                     __( 'A preloader is already running via "%s"', 'LION' ),
     111                    __( 'A preloader is already running via "%s"', 'solid-performance' ),
    112112                    $this->lock->owner()
    113113                )
  • solid-performance/tags/1.4.1/src/Performance/Telemetry/Health_Data.php

    r3239731 r3240351  
    8181    public function add_summary_to_telemetry( array $info ): array {
    8282        $page_cache          = swpsp_config_get( 'page_cache' );
    83         $page_cache_status   = $page_cache['enabled'] ? esc_html__( 'Enabled', 'LION' ) : esc_html__( 'Disabled', 'LION' );
    84         $cache_dir_writeable = swpsp_direct_filesystem()->is_writable( $page_cache['cache_dir'] ) ? esc_html__( 'Writable', 'LION' ) : esc_html__( 'Not Writable', 'LION' );
    85         $debug_mode_status   = $page_cache['debug'] ? esc_html__( 'Enabled', 'LION' ) : esc_html__( 'Disabled', 'LION' );
     83        $page_cache_status   = $page_cache['enabled'] ? esc_html__( 'Enabled', 'solid-performance' ) : esc_html__( 'Disabled', 'solid-performance' );
     84        $cache_dir_writeable = swpsp_direct_filesystem()->is_writable( $page_cache['cache_dir'] ) ? esc_html__( 'Writable', 'solid-performance' ) : esc_html__( 'Not Writable', 'solid-performance' );
     85        $debug_mode_status   = $page_cache['debug'] ? esc_html__( 'Enabled', 'solid-performance' ) : esc_html__( 'Disabled', 'solid-performance' );
    8686        $exclusion_count     = count( $page_cache['exclusions'] );
    8787        $enabled_compressors = implode(
     
    104104                        '%s mins',
    105105                        $label,
    106                         'LION'
     106                        'solid-performance'
    107107                    ),
    108108                    $label
     
    122122
    123123        $info['solid-performance'] = [
    124             'label'  => esc_html__( 'Solid Performance', 'LION' ),
     124            'label'  => esc_html__( 'Solid Performance', 'solid-performance' ),
    125125            'fields' => [
    126126                'page_cache_status'        => [
    127                     'label' => esc_html__( 'Page cache', 'LION' ),
     127                    'label' => esc_html__( 'Page cache', 'solid-performance' ),
    128128                    'value' => $page_cache_status,
    129129                    'debug' => strtolower( $page_cache_status ),
    130130                ],
    131131                'cache_directory'          => [
    132                     'label' => esc_html__( 'Cache directory', 'LION' ),
     132                    'label' => esc_html__( 'Cache directory', 'solid-performance' ),
    133133                    'value' => $page_cache['cache_dir'],
    134134                    'debug' => $page_cache['cache_dir'],
    135135                ],
    136136                'cache_directory_writable' => [
    137                     'label' => esc_html__( 'Cache directory permissions', 'LION' ),
     137                    'label' => esc_html__( 'Cache directory permissions', 'solid-performance' ),
    138138                    'value' => $cache_dir_writeable,
    139139                    'debug' => strtolower( $cache_dir_writeable ),
    140140                ],
    141141                'debug_mode'               => [
    142                     'label' => esc_html__( 'Debug mode', 'LION' ),
     142                    'label' => esc_html__( 'Debug mode', 'solid-performance' ),
    143143                    'value' => $debug_mode_status,
    144144                    'debug' => strtolower( $debug_mode_status ),
    145145                ],
    146146                'exclusion_count'          => [
    147                     'label' => esc_html__( 'Number of custom exclusions', 'LION' ),
     147                    'label' => esc_html__( 'Number of custom exclusions', 'solid-performance' ),
    148148                    'value' => $exclusion_count,
    149149                ],
    150150                'compression'              => [
    151                     'label' => esc_html__( 'Supported compression algorithms', 'LION' ),
     151                    'label' => esc_html__( 'Supported compression algorithms', 'solid-performance' ),
    152152                    'value' => $enabled_compressors,
    153153                    'debug' => $enabled_compressors,
    154154                ],
    155155                'system_load'              => [
    156                     'label' => esc_html__( 'System load average', 'LION' ),
     156                    'label' => esc_html__( 'System load average', 'solid-performance' ),
    157157                    'value' => $system_load,
    158158                    'debug' => $system_load_debug,
    159159                ],
    160160                'core_count'               => [
    161                     'label' => esc_html__( 'System CPU core count', 'LION' ),
     161                    'label' => esc_html__( 'System CPU core count', 'solid-performance' ),
    162162                    'value' => $core_count,
    163163                ],
    164164                'high_performance_mode'    => [
    165                     'label' => esc_html__( 'High performance mode', 'LION' ),
    166                     'value' => $this->preload_mode_manager->is_high_performance_mode() ? esc_html__( 'Enabled', 'LION' ) : esc_html__( 'Disabled', 'LION' ),
     165                    'label' => esc_html__( 'High performance mode', 'solid-performance' ),
     166                    'value' => $this->preload_mode_manager->is_high_performance_mode() ? esc_html__( 'Enabled', 'solid-performance' ) : esc_html__( 'Disabled', 'solid-performance' ),
    167167                    'debug' => $this->preload_mode_manager->is_high_performance_mode(),
    168168                ],
  • solid-performance/tags/1.4.1/src/Performance/Telemetry/Modal.php

    r3239731 r3240351  
    6363        $args['heading'] = sprintf(
    6464            // Translators: The plugin name.
    65             esc_html__( 'We hope you love %s.', 'LION' ),
     65            esc_html__( 'We hope you love %s.', 'solid-performance' ),
    6666            $args['plugin_name']
    6767        );
     
    8282        return sprintf(
    8383            // Translators: The User's name.
    84             esc_html__( 'Hi %s. SolidWP is dedicated to delivering top-notch services, and your input helps us deliver on that promise. By opting into our feedback program, you help enhance the Solid Performance experience for yourself and all of our users. When you opt in, you allow us to access certain data related to how you use our products, which we use responsibly to tailor our products to your needs. You will additionally receive updates, important product and marketing information, and exclusive offers via email. You may unsubscribe at any time. We take data privacy seriously and adhere to the highest standards respecting all relevant regulations and guidelines. To join and help shape the future of Solid Performance and StellarWP, simply click “Allow & Continue” below.', 'LION' ),
     84            esc_html__( 'Hi %s. SolidWP is dedicated to delivering top-notch services, and your input helps us deliver on that promise. By opting into our feedback program, you help enhance the Solid Performance experience for yourself and all of our users. When you opt in, you allow us to access certain data related to how you use our products, which we use responsibly to tailor our products to your needs. You will additionally receive updates, important product and marketing information, and exclusive offers via email. You may unsubscribe at any time. We take data privacy seriously and adhere to the highest standards respecting all relevant regulations and guidelines. To join and help shape the future of Solid Performance and StellarWP, simply click “Allow & Continue” below.', 'solid-performance' ),
    8585            $user_name,
    8686        );
  • solid-performance/tags/1.4.1/src/views/notices/welcome.php

    r3239731 r3240351  
    1414<div class="notice-content">
    1515    <div class="notice-title">
    16         <h2><?php echo esc_html__( 'Welcome to Solid Performance!', 'LION' ); ?></h2>
     16        <h2><?php echo esc_html__( 'Welcome to Solid Performance!', 'solid-performance' ); ?></h2>
    1717        <span class="notice-status">
    1818            <img src="<?php echo esc_url( plugin_dir_url( SWPSP_PLUGIN_FILE ) . '/images/check.svg' ); ?>" alt="A green check mark"/>
    19             <?php echo esc_html__( 'Solid Performance activated', 'LION' ); ?>
     19            <?php echo esc_html__( 'Solid Performance activated', 'solid-performance' ); ?>
    2020        </span>
    2121    </div>
    22     <p><?php echo esc_html__( 'The page cache is enabled. Visit the Solid Performance settings page to customize your configuration.', 'LION' ); ?></p>
     22    <p><?php echo esc_html__( 'The page cache is enabled. Visit the Solid Performance settings page to customize your configuration.', 'solid-performance' ); ?></p>
    2323</div>
    24 <a class="settings-page-button" href="<?php echo esc_url( admin_url( 'options-general.php?page=' . \SolidWP\Performance\Admin\Settings_Page::MENU_SLUG ) ); ?>"><?php echo esc_html__( 'Go to settings', 'LION' ); ?></a>
     24<a class="settings-page-button" href="<?php echo esc_url( admin_url( 'options-general.php?page=' . \SolidWP\Performance\Admin\Settings_Page::MENU_SLUG ) ); ?>"><?php echo esc_html__( 'Go to settings', 'solid-performance' ); ?></a>
  • solid-performance/tags/1.4.1/vendor/composer/installed.json

    r3239731 r3240351  
    5454            },
    5555            "install-path": "../fire015/flintstone"
    56         },
    57         {
    58             "name": "illuminate/collections",
    59             "version": "v8.83.27",
    60             "version_normalized": "8.83.27.0",
    61             "source": {
    62                 "type": "git",
    63                 "url": "https://github.com/illuminate/collections.git",
    64                 "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4"
    65             },
    66             "dist": {
    67                 "type": "zip",
    68                 "url": "https://api.github.com/repos/illuminate/collections/zipball/705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
    69                 "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
    70                 "shasum": ""
    71             },
    72             "require": {
    73                 "illuminate/contracts": "^8.0",
    74                 "illuminate/macroable": "^8.0",
    75                 "php": "^7.3|^8.0"
    76             },
    77             "suggest": {
    78                 "symfony/var-dumper": "Required to use the dump method (^5.4)."
    79             },
    80             "time": "2022-06-23T15:29:49+00:00",
    81             "type": "library",
    82             "extra": {
    83                 "branch-alias": {
    84                     "dev-master": "8.x-dev"
    85                 }
    86             },
    87             "installation-source": "dist",
    88             "autoload": {
    89                 "files": [
    90                     "helpers.php"
    91                 ],
    92                 "psr-4": {
    93                     "Illuminate\\Support\\": ""
    94                 }
    95             },
    96             "notification-url": "https://packagist.org/downloads/",
    97             "license": [
    98                 "MIT"
    99             ],
    100             "authors": [
    101                 {
    102                     "name": "Taylor Otwell",
    103                     "email": "[email protected]"
    104                 }
    105             ],
    106             "description": "The Illuminate Collections package.",
    107             "homepage": "https://laravel.com",
    108             "support": {
    109                 "issues": "https://github.com/laravel/framework/issues",
    110                 "source": "https://github.com/laravel/framework"
    111             },
    112             "install-path": "../illuminate/collections"
    113         },
    114         {
    115             "name": "illuminate/contracts",
    116             "version": "v8.83.27",
    117             "version_normalized": "8.83.27.0",
    118             "source": {
    119                 "type": "git",
    120                 "url": "https://github.com/illuminate/contracts.git",
    121                 "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d"
    122             },
    123             "dist": {
    124                 "type": "zip",
    125                 "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
    126                 "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
    127                 "shasum": ""
    128             },
    129             "require": {
    130                 "php": "^7.3|^8.0",
    131                 "psr/container": "^1.0",
    132                 "psr/simple-cache": "^1.0"
    133             },
    134             "time": "2022-01-13T14:47:47+00:00",
    135             "type": "library",
    136             "extra": {
    137                 "branch-alias": {
    138                     "dev-master": "8.x-dev"
    139                 }
    140             },
    141             "installation-source": "dist",
    142             "autoload": {
    143                 "psr-4": {
    144                     "Illuminate\\Contracts\\": ""
    145                 }
    146             },
    147             "notification-url": "https://packagist.org/downloads/",
    148             "license": [
    149                 "MIT"
    150             ],
    151             "authors": [
    152                 {
    153                     "name": "Taylor Otwell",
    154                     "email": "[email protected]"
    155                 }
    156             ],
    157             "description": "The Illuminate Contracts package.",
    158             "homepage": "https://laravel.com",
    159             "support": {
    160                 "issues": "https://github.com/laravel/framework/issues",
    161                 "source": "https://github.com/laravel/framework"
    162             },
    163             "install-path": "../illuminate/contracts"
    164         },
    165         {
    166             "name": "illuminate/macroable",
    167             "version": "v8.83.27",
    168             "version_normalized": "8.83.27.0",
    169             "source": {
    170                 "type": "git",
    171                 "url": "https://github.com/illuminate/macroable.git",
    172                 "reference": "aed81891a6e046fdee72edd497f822190f61c162"
    173             },
    174             "dist": {
    175                 "type": "zip",
    176                 "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
    177                 "reference": "aed81891a6e046fdee72edd497f822190f61c162",
    178                 "shasum": ""
    179             },
    180             "require": {
    181                 "php": "^7.3|^8.0"
    182             },
    183             "time": "2021-11-16T13:57:03+00:00",
    184             "type": "library",
    185             "extra": {
    186                 "branch-alias": {
    187                     "dev-master": "8.x-dev"
    188                 }
    189             },
    190             "installation-source": "dist",
    191             "autoload": {
    192                 "psr-4": {
    193                     "Illuminate\\Support\\": ""
    194                 }
    195             },
    196             "notification-url": "https://packagist.org/downloads/",
    197             "license": [
    198                 "MIT"
    199             ],
    200             "authors": [
    201                 {
    202                     "name": "Taylor Otwell",
    203                     "email": "[email protected]"
    204                 }
    205             ],
    206             "description": "The Illuminate Macroable package.",
    207             "homepage": "https://laravel.com",
    208             "support": {
    209                 "issues": "https://github.com/laravel/framework/issues",
    210                 "source": "https://github.com/laravel/framework"
    211             },
    212             "install-path": "../illuminate/macroable"
    21356        },
    21457        {
     
    752595        },
    753596        {
    754             "name": "psr/simple-cache",
    755             "version": "1.0.1",
    756             "version_normalized": "1.0.1.0",
    757             "source": {
    758                 "type": "git",
    759                 "url": "https://github.com/php-fig/simple-cache.git",
    760                 "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
    761             },
    762             "dist": {
    763                 "type": "zip",
    764                 "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
    765                 "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
    766                 "shasum": ""
    767             },
    768             "require": {
    769                 "php": ">=5.3.0"
    770             },
    771             "time": "2017-10-23T01:57:42+00:00",
    772             "type": "library",
    773             "extra": {
    774                 "branch-alias": {
    775                     "dev-master": "1.0.x-dev"
    776                 }
    777             },
    778             "installation-source": "dist",
    779             "autoload": {
    780                 "psr-4": {
    781                     "Psr\\SimpleCache\\": "src/"
    782                 }
    783             },
    784             "notification-url": "https://packagist.org/downloads/",
    785             "license": [
    786                 "MIT"
    787             ],
    788             "authors": [
    789                 {
    790                     "name": "PHP-FIG",
    791                     "homepage": "http://www.php-fig.org/"
    792                 }
    793             ],
    794             "description": "Common interfaces for simple caching",
    795             "keywords": [
    796                 "cache",
    797                 "caching",
    798                 "psr",
    799                 "psr-16",
    800                 "simple-cache"
    801             ],
    802             "support": {
    803                 "source": "https://github.com/php-fig/simple-cache/tree/master"
    804             },
    805             "install-path": "../psr/simple-cache"
    806         },
    807         {
    808597            "name": "ralouphie/getallheaders",
    809598            "version": "3.0.3",
     
    900689        {
    901690            "name": "stellarwp/arrays",
    902             "version": "1.3.0",
    903             "version_normalized": "1.3.0.0",
     691            "version": "1.3.1",
     692            "version_normalized": "1.3.1.0",
    904693            "source": {
    905694                "type": "git",
    906695                "url": "https://github.com/stellarwp/arrays.git",
    907                 "reference": "36c35ffdf3fbe5dad4c2b40308e35065caf8fe61"
    908             },
    909             "dist": {
    910                 "type": "zip",
    911                 "url": "https://api.github.com/repos/stellarwp/arrays/zipball/36c35ffdf3fbe5dad4c2b40308e35065caf8fe61",
    912                 "reference": "36c35ffdf3fbe5dad4c2b40308e35065caf8fe61",
    913                 "shasum": ""
    914             },
    915             "require": {
    916                 "illuminate/collections": "^8.0"
     696                "reference": "315a9b2018ac6f2475a346c89b1d7120ae07c218"
     697            },
     698            "dist": {
     699                "type": "zip",
     700                "url": "https://api.github.com/repos/stellarwp/arrays/zipball/315a9b2018ac6f2475a346c89b1d7120ae07c218",
     701                "reference": "315a9b2018ac6f2475a346c89b1d7120ae07c218",
     702                "shasum": ""
    917703            },
    918704            "require-dev": {
     
    923709                "szepeviktor/phpstan-wordpress": "^1.1"
    924710            },
    925             "time": "2025-01-17T22:57:46+00:00",
     711            "time": "2025-02-07T18:23:13+00:00",
    926712            "type": "library",
    927713            "installation-source": "dist",
     
    948734            "support": {
    949735                "issues": "https://github.com/stellarwp/arrays/issues",
    950                 "source": "https://github.com/stellarwp/arrays/tree/1.3.0"
     736                "source": "https://github.com/stellarwp/arrays/tree/1.3.1"
    951737            },
    952738            "install-path": "../stellarwp/arrays"
     
    12461032        {
    12471033            "name": "stellarwp/telemetry",
    1248             "version": "2.3.2",
    1249             "version_normalized": "2.3.2.0",
     1034            "version": "2.3.3",
     1035            "version_normalized": "2.3.3.0",
    12501036            "source": {
    12511037                "type": "git",
    12521038                "url": "https://github.com/stellarwp/telemetry.git",
    1253                 "reference": "a4bc84f1b9539ae5418e76caab31355191273a9c"
    1254             },
    1255             "dist": {
    1256                 "type": "zip",
    1257                 "url": "https://api.github.com/repos/stellarwp/telemetry/zipball/a4bc84f1b9539ae5418e76caab31355191273a9c",
    1258                 "reference": "a4bc84f1b9539ae5418e76caab31355191273a9c",
     1039                "reference": "cb302096350b047ab203367c8198bd0c5d1805cc"
     1040            },
     1041            "dist": {
     1042                "type": "zip",
     1043                "url": "https://api.github.com/repos/stellarwp/telemetry/zipball/cb302096350b047ab203367c8198bd0c5d1805cc",
     1044                "reference": "cb302096350b047ab203367c8198bd0c5d1805cc",
    12591045                "shasum": ""
    12601046            },
     
    12751061                "wp-coding-standards/wpcs": "^3.0.0"
    12761062            },
    1277             "time": "2024-01-08T18:55:26+00:00",
     1063            "time": "2025-01-28T21:13:55+00:00",
    12781064            "type": "library",
    12791065            "installation-source": "dist",
     
    12921078            "support": {
    12931079                "issues": "https://github.com/stellarwp/telemetry/issues",
    1294                 "source": "https://github.com/stellarwp/telemetry/tree/2.3.2"
     1080                "source": "https://github.com/stellarwp/telemetry/tree/2.3.3"
    12951081            },
    12961082            "install-path": "../stellarwp/telemetry"
  • solid-performance/tags/1.4.1/vendor/composer/installed.php

    r3239731 r3240351  
    22    'root' => array(
    33        'name' => 'ithemes/solid-performance',
    4         'pretty_version' => '1.4.0',
    5         'version' => '1.4.0.0',
    6         'reference' => 'edd4ed5ae52969e573fd932ba5f052cba5d8e6cc',
     4        'pretty_version' => '1.4.1',
     5        'version' => '1.4.1.0',
     6        'reference' => '3f9fd2b0497af77c92b0cfde3b6007c40cb15ef5',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2020            'dev_requirement' => false,
    2121        ),
    22         'illuminate/collections' => array(
    23             'pretty_version' => 'v8.83.27',
    24             'version' => '8.83.27.0',
    25             'reference' => '705a4e1ef93cd492c45b9b3e7911cccc990a07f4',
    26             'type' => 'library',
    27             'install_path' => __DIR__ . '/../illuminate/collections',
    28             'aliases' => array(),
    29             'dev_requirement' => false,
    30         ),
    31         'illuminate/contracts' => array(
    32             'pretty_version' => 'v8.83.27',
    33             'version' => '8.83.27.0',
    34             'reference' => '5e0fd287a1b22a6b346a9f7cd484d8cf0234585d',
    35             'type' => 'library',
    36             'install_path' => __DIR__ . '/../illuminate/contracts',
    37             'aliases' => array(),
    38             'dev_requirement' => false,
    39         ),
    40         'illuminate/macroable' => array(
    41             'pretty_version' => 'v8.83.27',
    42             'version' => '8.83.27.0',
    43             'reference' => 'aed81891a6e046fdee72edd497f822190f61c162',
    44             'type' => 'library',
    45             'install_path' => __DIR__ . '/../illuminate/macroable',
    46             'aliases' => array(),
    47             'dev_requirement' => false,
    48         ),
    4922        'ithemes/solid-performance' => array(
    50             'pretty_version' => '1.4.0',
    51             'version' => '1.4.0.0',
    52             'reference' => 'edd4ed5ae52969e573fd932ba5f052cba5d8e6cc',
     23            'pretty_version' => '1.4.1',
     24            'version' => '1.4.1.0',
     25            'reference' => '3f9fd2b0497af77c92b0cfde3b6007c40cb15ef5',
    5326            'type' => 'wordpress-plugin',
    5427            'install_path' => __DIR__ . '/../../',
     
    152125            ),
    153126        ),
    154         'psr/simple-cache' => array(
    155             'pretty_version' => '1.0.1',
    156             'version' => '1.0.1.0',
    157             'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b',
    158             'type' => 'library',
    159             'install_path' => __DIR__ . '/../psr/simple-cache',
    160             'aliases' => array(),
    161             'dev_requirement' => false,
    162         ),
    163127        'ralouphie/getallheaders' => array(
    164128            'pretty_version' => '3.0.3',
     
    180144        ),
    181145        'stellarwp/arrays' => array(
    182             'pretty_version' => '1.3.0',
    183             'version' => '1.3.0.0',
    184             'reference' => '36c35ffdf3fbe5dad4c2b40308e35065caf8fe61',
     146            'pretty_version' => '1.3.1',
     147            'version' => '1.3.1.0',
     148            'reference' => '315a9b2018ac6f2475a346c89b1d7120ae07c218',
    185149            'type' => 'library',
    186150            'install_path' => __DIR__ . '/../stellarwp/arrays',
     
    234198        ),
    235199        'stellarwp/telemetry' => array(
    236             'pretty_version' => '2.3.2',
    237             'version' => '2.3.2.0',
    238             'reference' => 'a4bc84f1b9539ae5418e76caab31355191273a9c',
     200            'pretty_version' => '2.3.3',
     201            'version' => '2.3.3.0',
     202            'reference' => 'cb302096350b047ab203367c8198bd0c5d1805cc',
    239203            'type' => 'library',
    240204            'install_path' => __DIR__ . '/../stellarwp/telemetry',
  • solid-performance/tags/1.4.1/vendor/vendor-prefixed/autoload-classmap.php

    r3239731 r3240351  
    183183   'SolidWP\Performance\Symfony\Component\VarDumper\Dumper\HtmlDumper' => $strauss_src . '/symfony/var-dumper/Dumper/HtmlDumper.php',
    184184   'SolidWP\Performance\Symfony\Component\VarDumper\VarDumper' => $strauss_src . '/symfony/var-dumper/VarDumper.php',
    185    'SolidWP\Performance\Illuminate\Contracts\Http\Kernel' => $strauss_src . '/illuminate/contracts/Http/Kernel.php',
    186    'SolidWP\Performance\Illuminate\Contracts\Routing\UrlRoutable' => $strauss_src . '/illuminate/contracts/Routing/UrlRoutable.php',
    187    'SolidWP\Performance\Illuminate\Contracts\Routing\ResponseFactory' => $strauss_src . '/illuminate/contracts/Routing/ResponseFactory.php',
    188    'SolidWP\Performance\Illuminate\Contracts\Routing\BindingRegistrar' => $strauss_src . '/illuminate/contracts/Routing/BindingRegistrar.php',
    189    'SolidWP\Performance\Illuminate\Contracts\Routing\UrlGenerator' => $strauss_src . '/illuminate/contracts/Routing/UrlGenerator.php',
    190    'SolidWP\Performance\Illuminate\Contracts\Routing\Registrar' => $strauss_src . '/illuminate/contracts/Routing/Registrar.php',
    191    'SolidWP\Performance\Illuminate\Contracts\Session\Session' => $strauss_src . '/illuminate/contracts/Session/Session.php',
    192    'SolidWP\Performance\Illuminate\Contracts\Notifications\Dispatcher' => $strauss_src . '/illuminate/contracts/Notifications/Dispatcher.php',
    193    'SolidWP\Performance\Illuminate\Contracts\Notifications\Factory' => $strauss_src . '/illuminate/contracts/Notifications/Factory.php',
    194    'SolidWP\Performance\Illuminate\Contracts\Auth\Authenticatable' => $strauss_src . '/illuminate/contracts/Auth/Authenticatable.php',
    195    'SolidWP\Performance\Illuminate\Contracts\Auth\UserProvider' => $strauss_src . '/illuminate/contracts/Auth/UserProvider.php',
    196    'SolidWP\Performance\Illuminate\Contracts\Auth\Middleware\AuthenticatesRequests' => $strauss_src . '/illuminate/contracts/Auth/Middleware/AuthenticatesRequests.php',
    197    'SolidWP\Performance\Illuminate\Contracts\Auth\StatefulGuard' => $strauss_src . '/illuminate/contracts/Auth/StatefulGuard.php',
    198    'SolidWP\Performance\Illuminate\Contracts\Auth\Access\Gate' => $strauss_src . '/illuminate/contracts/Auth/Access/Gate.php',
    199    'SolidWP\Performance\Illuminate\Contracts\Auth\Access\Authorizable' => $strauss_src . '/illuminate/contracts/Auth/Access/Authorizable.php',
    200    'SolidWP\Performance\Illuminate\Contracts\Auth\Factory' => $strauss_src . '/illuminate/contracts/Auth/Factory.php',
    201    'SolidWP\Performance\Illuminate\Contracts\Auth\CanResetPassword' => $strauss_src . '/illuminate/contracts/Auth/CanResetPassword.php',
    202    'SolidWP\Performance\Illuminate\Contracts\Auth\SupportsBasicAuth' => $strauss_src . '/illuminate/contracts/Auth/SupportsBasicAuth.php',
    203    'SolidWP\Performance\Illuminate\Contracts\Auth\PasswordBroker' => $strauss_src . '/illuminate/contracts/Auth/PasswordBroker.php',
    204    'SolidWP\Performance\Illuminate\Contracts\Auth\MustVerifyEmail' => $strauss_src . '/illuminate/contracts/Auth/MustVerifyEmail.php',
    205    'SolidWP\Performance\Illuminate\Contracts\Auth\Guard' => $strauss_src . '/illuminate/contracts/Auth/Guard.php',
    206    'SolidWP\Performance\Illuminate\Contracts\Auth\PasswordBrokerFactory' => $strauss_src . '/illuminate/contracts/Auth/PasswordBrokerFactory.php',
    207    'SolidWP\Performance\Illuminate\Contracts\Encryption\StringEncrypter' => $strauss_src . '/illuminate/contracts/Encryption/StringEncrypter.php',
    208    'SolidWP\Performance\Illuminate\Contracts\Encryption\Encrypter' => $strauss_src . '/illuminate/contracts/Encryption/Encrypter.php',
    209    'SolidWP\Performance\Illuminate\Contracts\Encryption\EncryptException' => $strauss_src . '/illuminate/contracts/Encryption/EncryptException.php',
    210    'SolidWP\Performance\Illuminate\Contracts\Encryption\DecryptException' => $strauss_src . '/illuminate/contracts/Encryption/DecryptException.php',
    211    'SolidWP\Performance\Illuminate\Contracts\View\View' => $strauss_src . '/illuminate/contracts/View/View.php',
    212    'SolidWP\Performance\Illuminate\Contracts\View\Factory' => $strauss_src . '/illuminate/contracts/View/Factory.php',
    213    'SolidWP\Performance\Illuminate\Contracts\View\Engine' => $strauss_src . '/illuminate/contracts/View/Engine.php',
    214    'SolidWP\Performance\Illuminate\Contracts\Support\ValidatedData' => $strauss_src . '/illuminate/contracts/Support/ValidatedData.php',
    215    'SolidWP\Performance\Illuminate\Contracts\Support\DeferrableProvider' => $strauss_src . '/illuminate/contracts/Support/DeferrableProvider.php',
    216    'SolidWP\Performance\Illuminate\Contracts\Support\Jsonable' => $strauss_src . '/illuminate/contracts/Support/Jsonable.php',
    217    'SolidWP\Performance\Illuminate\Contracts\Support\MessageProvider' => $strauss_src . '/illuminate/contracts/Support/MessageProvider.php',
    218    'SolidWP\Performance\Illuminate\Contracts\Support\Responsable' => $strauss_src . '/illuminate/contracts/Support/Responsable.php',
    219    'SolidWP\Performance\Illuminate\Contracts\Support\MessageBag' => $strauss_src . '/illuminate/contracts/Support/MessageBag.php',
    220    'SolidWP\Performance\Illuminate\Contracts\Support\CanBeEscapedWhenCastToString' => $strauss_src . '/illuminate/contracts/Support/CanBeEscapedWhenCastToString.php',
    221    'SolidWP\Performance\Illuminate\Contracts\Support\Renderable' => $strauss_src . '/illuminate/contracts/Support/Renderable.php',
    222    'SolidWP\Performance\Illuminate\Contracts\Support\Htmlable' => $strauss_src . '/illuminate/contracts/Support/Htmlable.php',
    223    'SolidWP\Performance\Illuminate\Contracts\Support\Arrayable' => $strauss_src . '/illuminate/contracts/Support/Arrayable.php',
    224    'SolidWP\Performance\Illuminate\Contracts\Support\DeferringDisplayableValue' => $strauss_src . '/illuminate/contracts/Support/DeferringDisplayableValue.php',
    225    'SolidWP\Performance\Illuminate\Contracts\Foundation\CachesConfiguration' => $strauss_src . '/illuminate/contracts/Foundation/CachesConfiguration.php',
    226    'SolidWP\Performance\Illuminate\Contracts\Foundation\CachesRoutes' => $strauss_src . '/illuminate/contracts/Foundation/CachesRoutes.php',
    227    'SolidWP\Performance\Illuminate\Contracts\Foundation\Application' => $strauss_src . '/illuminate/contracts/Foundation/Application.php',
    228    'SolidWP\Performance\Illuminate\Contracts\Console\Application' => $strauss_src . '/illuminate/contracts/Console/Application.php',
    229    'SolidWP\Performance\Illuminate\Contracts\Console\Kernel' => $strauss_src . '/illuminate/contracts/Console/Kernel.php',
    230    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\HasBroadcastChannel' => $strauss_src . '/illuminate/contracts/Broadcasting/HasBroadcastChannel.php',
    231    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\ShouldBroadcastNow' => $strauss_src . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php',
    232    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\Factory' => $strauss_src . '/illuminate/contracts/Broadcasting/Factory.php',
    233    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\Broadcaster' => $strauss_src . '/illuminate/contracts/Broadcasting/Broadcaster.php',
    234    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\ShouldBroadcast' => $strauss_src . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php',
    235    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\DeviatesCastableAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/DeviatesCastableAttributes.php',
    236    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\SupportsPartialRelations' => $strauss_src . '/illuminate/contracts/Database/Eloquent/SupportsPartialRelations.php',
    237    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\Castable' => $strauss_src . '/illuminate/contracts/Database/Eloquent/Castable.php',
    238    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/CastsInboundAttributes.php',
    239    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\SerializesCastableAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/SerializesCastableAttributes.php',
    240    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\CastsAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/CastsAttributes.php',
    241    'SolidWP\Performance\Illuminate\Contracts\Database\ModelIdentifier' => $strauss_src . '/illuminate/contracts/Database/ModelIdentifier.php',
    242    'SolidWP\Performance\Illuminate\Contracts\Database\Events\MigrationEvent' => $strauss_src . '/illuminate/contracts/Database/Events/MigrationEvent.php',
    243    'SolidWP\Performance\Illuminate\Contracts\Debug\ExceptionHandler' => $strauss_src . '/illuminate/contracts/Debug/ExceptionHandler.php',
    244    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldQueue' => $strauss_src . '/illuminate/contracts/Queue/ShouldQueue.php',
    245    'SolidWP\Performance\Illuminate\Contracts\Queue\ClearableQueue' => $strauss_src . '/illuminate/contracts/Queue/ClearableQueue.php',
    246    'SolidWP\Performance\Illuminate\Contracts\Queue\EntityNotFoundException' => $strauss_src . '/illuminate/contracts/Queue/EntityNotFoundException.php',
    247    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldBeEncrypted' => $strauss_src . '/illuminate/contracts/Queue/ShouldBeEncrypted.php',
    248    'SolidWP\Performance\Illuminate\Contracts\Queue\Factory' => $strauss_src . '/illuminate/contracts/Queue/Factory.php',
    249    'SolidWP\Performance\Illuminate\Contracts\Queue\QueueableCollection' => $strauss_src . '/illuminate/contracts/Queue/QueueableCollection.php',
    250    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing' => $strauss_src . '/illuminate/contracts/Queue/ShouldBeUniqueUntilProcessing.php',
    251    'SolidWP\Performance\Illuminate\Contracts\Queue\Queue' => $strauss_src . '/illuminate/contracts/Queue/Queue.php',
    252    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldBeUnique' => $strauss_src . '/illuminate/contracts/Queue/ShouldBeUnique.php',
    253    'SolidWP\Performance\Illuminate\Contracts\Queue\EntityResolver' => $strauss_src . '/illuminate/contracts/Queue/EntityResolver.php',
    254    'SolidWP\Performance\Illuminate\Contracts\Queue\Job' => $strauss_src . '/illuminate/contracts/Queue/Job.php',
    255    'SolidWP\Performance\Illuminate\Contracts\Queue\Monitor' => $strauss_src . '/illuminate/contracts/Queue/Monitor.php',
    256    'SolidWP\Performance\Illuminate\Contracts\Queue\QueueableEntity' => $strauss_src . '/illuminate/contracts/Queue/QueueableEntity.php',
    257    'SolidWP\Performance\Illuminate\Contracts\Events\Dispatcher' => $strauss_src . '/illuminate/contracts/Events/Dispatcher.php',
    258    'SolidWP\Performance\Illuminate\Contracts\Translation\Translator' => $strauss_src . '/illuminate/contracts/Translation/Translator.php',
    259    'SolidWP\Performance\Illuminate\Contracts\Translation\Loader' => $strauss_src . '/illuminate/contracts/Translation/Loader.php',
    260    'SolidWP\Performance\Illuminate\Contracts\Translation\HasLocalePreference' => $strauss_src . '/illuminate/contracts/Translation/HasLocalePreference.php',
    261    'SolidWP\Performance\Illuminate\Contracts\Cookie\Factory' => $strauss_src . '/illuminate/contracts/Cookie/Factory.php',
    262    'SolidWP\Performance\Illuminate\Contracts\Cookie\QueueingFactory' => $strauss_src . '/illuminate/contracts/Cookie/QueueingFactory.php',
    263    'SolidWP\Performance\Illuminate\Contracts\Config\Repository' => $strauss_src . '/illuminate/contracts/Config/Repository.php',
    264    'SolidWP\Performance\Illuminate\Contracts\Cache\Lock' => $strauss_src . '/illuminate/contracts/Cache/Lock.php',
    265    'SolidWP\Performance\Illuminate\Contracts\Cache\LockTimeoutException' => $strauss_src . '/illuminate/contracts/Cache/LockTimeoutException.php',
    266    'SolidWP\Performance\Illuminate\Contracts\Cache\Store' => $strauss_src . '/illuminate/contracts/Cache/Store.php',
    267    'SolidWP\Performance\Illuminate\Contracts\Cache\Factory' => $strauss_src . '/illuminate/contracts/Cache/Factory.php',
    268    'SolidWP\Performance\Illuminate\Contracts\Cache\Repository' => $strauss_src . '/illuminate/contracts/Cache/Repository.php',
    269    'SolidWP\Performance\Illuminate\Contracts\Cache\LockProvider' => $strauss_src . '/illuminate/contracts/Cache/LockProvider.php',
    270    'SolidWP\Performance\Illuminate\Contracts\Pagination\CursorPaginator' => $strauss_src . '/illuminate/contracts/Pagination/CursorPaginator.php',
    271    'SolidWP\Performance\Illuminate\Contracts\Pagination\Paginator' => $strauss_src . '/illuminate/contracts/Pagination/Paginator.php',
    272    'SolidWP\Performance\Illuminate\Contracts\Pagination\LengthAwarePaginator' => $strauss_src . '/illuminate/contracts/Pagination/LengthAwarePaginator.php',
    273    'SolidWP\Performance\Illuminate\Contracts\Pipeline\Hub' => $strauss_src . '/illuminate/contracts/Pipeline/Hub.php',
    274    'SolidWP\Performance\Illuminate\Contracts\Pipeline\Pipeline' => $strauss_src . '/illuminate/contracts/Pipeline/Pipeline.php',
    275    'SolidWP\Performance\Illuminate\Contracts\Bus\Dispatcher' => $strauss_src . '/illuminate/contracts/Bus/Dispatcher.php',
    276    'SolidWP\Performance\Illuminate\Contracts\Bus\QueueingDispatcher' => $strauss_src . '/illuminate/contracts/Bus/QueueingDispatcher.php',
    277    'SolidWP\Performance\Illuminate\Contracts\Redis\Connector' => $strauss_src . '/illuminate/contracts/Redis/Connector.php',
    278    'SolidWP\Performance\Illuminate\Contracts\Redis\Factory' => $strauss_src . '/illuminate/contracts/Redis/Factory.php',
    279    'SolidWP\Performance\Illuminate\Contracts\Redis\LimiterTimeoutException' => $strauss_src . '/illuminate/contracts/Redis/LimiterTimeoutException.php',
    280    'SolidWP\Performance\Illuminate\Contracts\Redis\Connection' => $strauss_src . '/illuminate/contracts/Redis/Connection.php',
    281    'SolidWP\Performance\Illuminate\Contracts\Hashing\Hasher' => $strauss_src . '/illuminate/contracts/Hashing/Hasher.php',
    282    'SolidWP\Performance\Illuminate\Contracts\Filesystem\FileExistsException' => $strauss_src . '/illuminate/contracts/Filesystem/FileExistsException.php',
    283    'SolidWP\Performance\Illuminate\Contracts\Filesystem\LockTimeoutException' => $strauss_src . '/illuminate/contracts/Filesystem/LockTimeoutException.php',
    284    'SolidWP\Performance\Illuminate\Contracts\Filesystem\Factory' => $strauss_src . '/illuminate/contracts/Filesystem/Factory.php',
    285    'SolidWP\Performance\Illuminate\Contracts\Filesystem\Cloud' => $strauss_src . '/illuminate/contracts/Filesystem/Cloud.php',
    286    'SolidWP\Performance\Illuminate\Contracts\Filesystem\Filesystem' => $strauss_src . '/illuminate/contracts/Filesystem/Filesystem.php',
    287    'SolidWP\Performance\Illuminate\Contracts\Filesystem\FileNotFoundException' => $strauss_src . '/illuminate/contracts/Filesystem/FileNotFoundException.php',
    288    'SolidWP\Performance\Illuminate\Contracts\Validation\Validator' => $strauss_src . '/illuminate/contracts/Validation/Validator.php',
    289    'SolidWP\Performance\Illuminate\Contracts\Validation\ImplicitRule' => $strauss_src . '/illuminate/contracts/Validation/ImplicitRule.php',
    290    'SolidWP\Performance\Illuminate\Contracts\Validation\DataAwareRule' => $strauss_src . '/illuminate/contracts/Validation/DataAwareRule.php',
    291    'SolidWP\Performance\Illuminate\Contracts\Validation\Factory' => $strauss_src . '/illuminate/contracts/Validation/Factory.php',
    292    'SolidWP\Performance\Illuminate\Contracts\Validation\ValidatorAwareRule' => $strauss_src . '/illuminate/contracts/Validation/ValidatorAwareRule.php',
    293    'SolidWP\Performance\Illuminate\Contracts\Validation\UncompromisedVerifier' => $strauss_src . '/illuminate/contracts/Validation/UncompromisedVerifier.php',
    294    'SolidWP\Performance\Illuminate\Contracts\Validation\ValidatesWhenResolved' => $strauss_src . '/illuminate/contracts/Validation/ValidatesWhenResolved.php',
    295    'SolidWP\Performance\Illuminate\Contracts\Validation\Rule' => $strauss_src . '/illuminate/contracts/Validation/Rule.php',
    296    'SolidWP\Performance\Illuminate\Contracts\Container\Container' => $strauss_src . '/illuminate/contracts/Container/Container.php',
    297    'SolidWP\Performance\Illuminate\Contracts\Container\BindingResolutionException' => $strauss_src . '/illuminate/contracts/Container/BindingResolutionException.php',
    298    'SolidWP\Performance\Illuminate\Contracts\Container\ContextualBindingBuilder' => $strauss_src . '/illuminate/contracts/Container/ContextualBindingBuilder.php',
    299    'SolidWP\Performance\Illuminate\Contracts\Container\CircularDependencyException' => $strauss_src . '/illuminate/contracts/Container/CircularDependencyException.php',
    300    'SolidWP\Performance\Illuminate\Contracts\Mail\Factory' => $strauss_src . '/illuminate/contracts/Mail/Factory.php',
    301    'SolidWP\Performance\Illuminate\Contracts\Mail\Mailer' => $strauss_src . '/illuminate/contracts/Mail/Mailer.php',
    302    'SolidWP\Performance\Illuminate\Contracts\Mail\MailQueue' => $strauss_src . '/illuminate/contracts/Mail/MailQueue.php',
    303    'SolidWP\Performance\Illuminate\Contracts\Mail\Mailable' => $strauss_src . '/illuminate/contracts/Mail/Mailable.php',
    304    'SolidWP\Performance\Illuminate\Support\Arr' => $strauss_src . '/illuminate/collections/Arr.php',
    305    'SolidWP\Performance\Illuminate\Support\Enumerable' => $strauss_src . '/illuminate/collections/Enumerable.php',
    306    'SolidWP\Performance\Illuminate\Support\HigherOrderWhenProxy' => $strauss_src . '/illuminate/collections/HigherOrderWhenProxy.php',
    307    'SolidWP\Performance\Illuminate\Support\Traits\EnumeratesValues' => $strauss_src . '/illuminate/collections/Traits/EnumeratesValues.php',
    308    'SolidWP\Performance\Illuminate\Support\ItemNotFoundException' => $strauss_src . '/illuminate/collections/ItemNotFoundException.php',
    309    'SolidWP\Performance\Illuminate\Support\MultipleItemsFoundException' => $strauss_src . '/illuminate/collections/MultipleItemsFoundException.php',
    310    'SolidWP\Performance\Illuminate\Support\LazyCollection' => $strauss_src . '/illuminate/collections/LazyCollection.php',
    311    'SolidWP\Performance\Illuminate\Support\Collection' => $strauss_src . '/illuminate/collections/Collection.php',
    312    'SolidWP\Performance\Illuminate\Support\HigherOrderCollectionProxy' => $strauss_src . '/illuminate/collections/HigherOrderCollectionProxy.php',
    313    'SolidWP\Performance\Illuminate\Support\Traits\Macroable' => $strauss_src . '/illuminate/macroable/Traits/Macroable.php',
    314185   'SolidWP_Performance_WPConfigTransformer' => $strauss_src . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php',
    315186   'SolidWP\Performance\Niladam\Uri\UriQuery' => $strauss_src . '/niladam/uri/src/UriQuery.php',
     
    380251   'SolidWP\Performance\Psr\Log\LoggerAwareInterface' => $strauss_src . '/psr/log/Psr/Log/LoggerAwareInterface.php',
    381252   'SolidWP\Performance\Psr\Log\LoggerAwareTrait' => $strauss_src . '/psr/log/Psr/Log/LoggerAwareTrait.php',
    382    'SolidWP\Performance\Psr\SimpleCache\CacheInterface' => $strauss_src . '/psr/simple-cache/src/CacheInterface.php',
    383    'SolidWP\Performance\Psr\SimpleCache\CacheException' => $strauss_src . '/psr/simple-cache/src/CacheException.php',
    384    'SolidWP\Performance\Psr\SimpleCache\InvalidArgumentException' => $strauss_src . '/psr/simple-cache/src/InvalidArgumentException.php',
    385253   'SolidWP\Performance\Psr\Http\Message\UploadedFileInterface' => $strauss_src . '/psr/http-message/src/UploadedFileInterface.php',
    386254   'SolidWP\Performance\Psr\Http\Message\ServerRequestInterface' => $strauss_src . '/psr/http-message/src/ServerRequestInterface.php',
  • solid-performance/tags/1.4.1/vendor/vendor-prefixed/autoload-files.php

    r3239731 r3240351  
    44// @see https://github.com/BrianHenryIE/strauss/
    55
    6 require_once __DIR__ . '/illuminate/collections/helpers.php';
    76require_once __DIR__ . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php';
    87require_once __DIR__ . '/rogervila/array-diff-multidimensional/src/helpers.php';
  • solid-performance/tags/1.4.1/vendor/vendor-prefixed/stellarwp/arrays/src/Arrays/Arr.php

    r3239731 r3240351  
    44
    55use ArrayAccess;
    6 use SolidWP\Performance\Illuminate\Support\Enumerable;
     6use Closure;
    77use InvalidArgumentException;
    88
     
    303303     * Determine if the given key exists in the provided array.
    304304     *
    305      * @param \ArrayAccess|Enumerable|array $array
     305     * @param \ArrayAccess|array $array
    306306     * @param string|int|float   $key
    307307     *
     
    349349        if ( is_null( $callback ) ) {
    350350            if ( empty( $array ) ) {
    351                 return value( $default );
     351                return self::value( $default );
    352352            }
    353353
     
    363363        }
    364364
    365         return value( $default );
     365        return self::value( $default );
    366366    }
    367367
     
    710710    public static function last( $array, callable $callback = null, $default = null ) {
    711711        if ( is_null( $callback ) ) {
    712             return empty( $array ) ? value( $default ) : end( $array );
     712            return empty( $array ) ? self::value( $default ) : end( $array );
    713713        }
    714714
     
    14601460        return $array;
    14611461    }
     1462
     1463    /**
     1464     * Return the default value of the given value.
     1465     *
     1466     * @template TValue
     1467     * @template TArgs
     1468     *
     1469     * @param  TValue|\Closure(TArgs): TValue  $value
     1470     * @param  TArgs  ...$args
     1471     * @return TValue
     1472     */
     1473    private static function value( $value, ...$args ) {
     1474        return $value instanceof Closure ? $value( ...$args ) : $value;
     1475    }
    14621476}
  • solid-performance/tags/1.4.1/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Template.php

    r3239731 r3240351  
    136136        /**
    137137         * Filters the name of the option stored in the options table.
     138         * This filter can be used to apply a generic option name.
     139         * Usage of this filter is highly discouraged.
     140         *
     141         * @since 2.3
     142         *
     143         * @param string $option_name
     144         * @param string $stellar_slug The current stellar slug.
     145         */
     146        $option_name = apply_filters(
     147            'stellarwp/telemetry/show_optin_option_name',
     148            $option_name,
     149            $stellar_slug
     150        );
     151
     152        /**
     153         * Filters the name of the option stored in the options table.
    138154         *
    139155         * @since 1.0.0
  • solid-performance/trunk/readme.txt

    r3239712 r3240351  
    55Requires at least: 6.4
    66Tested up to: 6.7.2
    7 Stable tag: 1.4.0
     7Stable tag: 1.4.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    8989== Changelog ==
    9090
     91= 1.4.1 =
     92
     93* Update dependencies to shrink vendor folder.
     94
    9195= 1.4.0 =
    9296
  • solid-performance/trunk/solid-performance.php

    r3239731 r3240351  
    55 * Author: SolidWP
    66 * Author URI: https://go.solidwp.com/performance-author
    7  * Version: 1.4.0
     7 * Version: 1.4.1
    88 * Text Domain: solid-performance
    99 * Domain Path: /lang
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Cache_Count.php

    r3239731 r3240351  
    7272            'properties' => [
    7373                'count' => [
    74                     'description' => esc_html__( 'How many cached pages this site has across all compression types', 'LION' ),
     74                    'description' => esc_html__( 'How many cached pages this site has across all compression types', 'solid-performance' ),
    7575                    'type'        => 'int',
    7676                    'readonly'    => true,
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Clear.php

    r3239731 r3240351  
    7171            return new WP_Error(
    7272                'solid_performance_page_cache_clear_error',
    73                 __( 'The site is currently preloading. Cancel preloading or try again later.', 'LION' ),
     73                __( 'The site is currently preloading. Cancel preloading or try again later.', 'solid-performance' ),
    7474            );
    7575        }
     
    8080            return new WP_Error(
    8181                'solid_performance_page_cache_clear_error',
    82                 __( 'Page cache could not be cleared', 'LION' ),
     82                __( 'Page cache could not be cleared', 'solid-performance' ),
    8383            );
    8484        }
     
    8787            [
    8888                'code'    => 'solid_performance_page_cache_cleared',
    89                 'message' => __( 'Page cache cleared successfully', 'LION' ),
     89                'message' => __( 'Page cache cleared successfully', 'solid-performance' ),
    9090            ]
    9191        );
     
    102102            'properties' => [
    103103                'code'    => [
    104                     'description' => esc_html__( 'The identification code of the action.', 'LION' ),
     104                    'description' => esc_html__( 'The identification code of the action.', 'solid-performance' ),
    105105                    'type'        => 'string',
    106106                    'enum'        => [
     
    111111                ],
    112112                'message' => [
    113                     'description' => esc_html__( 'The formatted message of the action change.', 'LION' ),
     113                    'description' => esc_html__( 'The formatted message of the action change.', 'solid-performance' ),
    114114                    'type'        => 'string',
    115115                    'readonly'    => true,
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Debug.php

    r3239731 r3240351  
    8484                self::PARAM_STATE => [
    8585                    'type'        => 'string',
    86                     'description' => esc_html__( 'The state of the page cache debug mode.', 'LION' ),
     86                    'description' => esc_html__( 'The state of the page cache debug mode.', 'solid-performance' ),
    8787                    'enum'        => [
    8888                        'on',
     
    104104            'properties' => [
    105105                'enabled' => [
    106                     'description' => esc_html__( 'The status of the page cache.', 'LION' ),
     106                    'description' => esc_html__( 'The status of the page cache.', 'solid-performance' ),
    107107                    'type'        => 'boolean',
    108108                    'readonly'    => true,
    109109                ],
    110110                'code'    => [
    111                     'description' => esc_html__( 'The identification code of the setting state.', 'LION' ),
     111                    'description' => esc_html__( 'The identification code of the setting state.', 'solid-performance' ),
    112112                    'type'        => 'string',
    113113                    'enum'        => [
     
    118118                ],
    119119                'message' => [
    120                     'description' => esc_html__( 'The formatted message of the setting state.', 'LION' ),
     120                    'description' => esc_html__( 'The formatted message of the setting state.', 'solid-performance' ),
    121121                    'type'        => 'string',
    122122                    'readonly'    => true,
     
    141141                    'enabled' => true,
    142142                    'code'    => 'solid_performance_page_cache_debug_mode_on',
    143                     'message' => __( 'Page cache debug mode is enabled', 'LION' ),
     143                    'message' => __( 'Page cache debug mode is enabled', 'solid-performance' ),
    144144                ]
    145145            );
     
    150150                'enabled' => false,
    151151                'code'    => 'solid_performance_page_cache_debug_mode_off',
    152                 'message' => __( 'Page cache debug mode is disabled', 'LION' ),
     152                'message' => __( 'Page cache debug mode is disabled', 'solid-performance' ),
    153153            ]
    154154        );
     
    172172                    'enabled' => true,
    173173                    'code'    => 'solid_performance_page_cache_debug_mode_on',
    174                     'message' => __( 'Page cache debug mode is enabled', 'LION' ),
     174                    'message' => __( 'Page cache debug mode is enabled', 'solid-performance' ),
    175175                ]
    176176            );
     
    181181                'enabled' => false,
    182182                'code'    => 'solid_performance_page_cache_debug_mode_off',
    183                 'message' => __( 'Page cache debug mode is disabled', 'LION' ),
     183                'message' => __( 'Page cache debug mode is disabled', 'solid-performance' ),
    184184            ]
    185185        );
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Off.php

    r3239731 r3240351  
    6565            return new WP_Error(
    6666                'solid_performance_page_cache_not_disabled',
    67                 __( 'Page cache could not be disabled', 'LION' ),
     67                __( 'Page cache could not be disabled', 'solid-performance' ),
    6868            );
    6969        }
     
    7373                'enabled' => false,
    7474                'code'    => 'solid_performance_page_cache_off',
    75                 'message' => __( 'Page cache disabled successfully', 'LION' ),
     75                'message' => __( 'Page cache disabled successfully', 'solid-performance' ),
    7676            ]
    7777        );
     
    8888            'properties' => [
    8989                'enabled' => [
    90                     'description' => esc_html__( 'The current state of page caching.', 'LION' ),
     90                    'description' => esc_html__( 'The current state of page caching.', 'solid-performance' ),
    9191                    'type'        => 'boolean',
    9292                    'readonly'    => true,
    9393                ],
    9494                'code'    => [
    95                     'description' => esc_html__( 'The identification code of the setting.', 'LION' ),
     95                    'description' => esc_html__( 'The identification code of the setting.', 'solid-performance' ),
    9696                    'type'        => 'string',
    9797                    'enum'        => [
     
    102102                ],
    103103                'message' => [
    104                     'description' => esc_html__( 'The formatted message of the setting change.', 'LION' ),
     104                    'description' => esc_html__( 'The formatted message of the setting change.', 'solid-performance' ),
    105105                    'type'        => 'string',
    106106                    'readonly'    => true,
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/On.php

    r3239731 r3240351  
    6565            return new WP_Error(
    6666                'solid_performance_page_cache_not_enabled',
    67                 __( 'Page cache could not be enabled', 'LION' ),
     67                __( 'Page cache could not be enabled', 'solid-performance' ),
    6868            );
    6969        }
     
    7373                'enabled' => true,
    7474                'code'    => 'solid_performance_page_cache_enabled',
    75                 'message' => __( 'Page cache enabled successfully', 'LION' ),
     75                'message' => __( 'Page cache enabled successfully', 'solid-performance' ),
    7676            ]
    7777        );
     
    8888            'properties' => [
    8989                'enabled' => [
    90                     'description' => esc_html__( 'The current state of page caching.', 'LION' ),
     90                    'description' => esc_html__( 'The current state of page caching.', 'solid-performance' ),
    9191                    'type'        => 'boolean',
    9292                    'readonly'    => true,
    9393                ],
    9494                'code'    => [
    95                     'description' => esc_html__( 'The identification code of the setting.', 'LION' ),
     95                    'description' => esc_html__( 'The identification code of the setting.', 'solid-performance' ),
    9696                    'type'        => 'string',
    9797                    'enum'        => [
     
    102102                ],
    103103                'message' => [
    104                     'description' => esc_html__( 'The formatted message of the setting change.', 'LION' ),
     104                    'description' => esc_html__( 'The formatted message of the setting change.', 'solid-performance' ),
    105105                    'type'        => 'string',
    106106                    'readonly'    => true,
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Preload.php

    r3239731 r3240351  
    105105                            'code'      => self::CODE_COMPLETED,
    106106                            /* translators: %s: The human-readable duration. */
    107                             'message'   => sprintf( __( 'Preloading completed in %s.', 'LION' ), $state->duration ),
     107                            'message'   => sprintf( __( 'Preloading completed in %s.', 'solid-performance' ), $state->duration ),
    108108                            'running'   => false,
    109109                            'progress'  => $this->preloader->progress(),
     
    116116                            'code'      => self::CODE_CANCELED,
    117117                            /* translators: %s: The source of what initiated or canceled the preloader. */
    118                             'message'   => sprintf( __( 'Preloading canceled via "%s".', 'LION' ), $state->source ),
     118                            'message'   => sprintf( __( 'Preloading canceled via "%s".', 'solid-performance' ), $state->source ),
    119119                            'running'   => false,
    120120                            'progress'  => $this->preloader->progress(),
     
    141141                    'code'      => self::CODE_FAILED,
    142142                    /* translators: %s: The error message. */
    143                     'message'   => sprintf( __( 'Preloading Failed: %s', 'LION' ), $e->getMessage() ),
     143                    'message'   => sprintf( __( 'Preloading Failed: %s', 'solid-performance' ), $e->getMessage() ),
    144144                    'running'   => false,
    145145                    'progress'  => 0,
     
    153153                    'code'      => self::CODE_STALLED,
    154154                    /* translators: %s: The error message. */
    155                     'message'   => sprintf( __( 'Attempting to restart the Preloader. An error occurred: %s', 'LION' ), $e->getMessage() ),
     155                    'message'   => sprintf( __( 'Attempting to restart the Preloader. An error occurred: %s', 'solid-performance' ), $e->getMessage() ),
    156156                    'running'   => true,
    157157                    'progress'  => 0,
     
    170170                self::PARAM_FORCE => [
    171171                    'type'        => 'boolean',
    172                     'description' => esc_html__( 'Whether to force a full site preload.', 'LION' ),
     172                    'description' => esc_html__( 'Whether to force a full site preload.', 'solid-performance' ),
    173173                    'default'     => false,
    174174                    'required'    => false,
     
    188188            'properties' => [
    189189                'code'      => [
    190                     'description' => esc_html__( 'The identification code of the preloading state.', 'LION' ),
     190                    'description' => esc_html__( 'The identification code of the preloading state.', 'solid-performance' ),
    191191                    'type'        => 'string',
    192192                    'enum'        => self::CODES,
     
    194194                ],
    195195                'message'   => [
    196                     'description' => esc_html__( 'The message describing the current preloading state or action result.', 'LION' ),
     196                    'description' => esc_html__( 'The message describing the current preloading state or action result.', 'solid-performance' ),
    197197                    'type'        => 'string',
    198198                    'readonly'    => true,
    199199                ],
    200200                'source'    => [
    201                     'description' => esc_html__( 'The source of where the preloader started running.', 'LION' ),
     201                    'description' => esc_html__( 'The source of where the preloader started running.', 'solid-performance' ),
    202202                    'type'        => 'string',
    203203                    'enum'        => [
     
    208208                ],
    209209                'running'   => [
    210                     'description' => esc_html__( 'Indicates whether preloading is currently running.', 'LION' ),
     210                    'description' => esc_html__( 'Indicates whether preloading is currently running.', 'solid-performance' ),
    211211                    'type'        => 'boolean',
    212212                    'readonly'    => true,
    213213                ],
    214214                'progress'  => [
    215                     'description' => esc_html__( 'The progress of the preloading process as a percentage.', 'LION' ),
     215                    'description' => esc_html__( 'The progress of the preloading process as a percentage.', 'solid-performance' ),
    216216                    'type'        => 'integer',
    217217                    'minimum'     => 0,
     
    220220                ],
    221221                'preloadId' => [
    222                     'description' => esc_html__( 'The preload ID to determine if the current session has shown it yet.', 'LION' ),
     222                    'description' => esc_html__( 'The preload ID to determine if the current session has shown it yet.', 'solid-performance' ),
    223223                    'type'        => 'string',
    224224                    'readonly'    => true,
     
    263263                sprintf(
    264264                    /* translators: %s: The source of what initiated or canceled the preloader. */
    265                     __( 'A preloader is already running via "%s".', 'LION' ),
     265                    __( 'A preloader is already running via "%s".', 'solid-performance' ),
    266266                    $this->preloader->state()->get()->source
    267267                ),
     
    274274                self::CODE_RUNNING,
    275275                /* translators: %s: The error message. */
    276                 sprintf( __( 'Warning: %s', 'LION' ), $e->getMessage() )
     276                sprintf( __( 'Warning: %s', 'solid-performance' ), $e->getMessage() )
    277277            );
    278278        } catch ( Throwable $e ) {
     
    282282                self::CODE_COMPLETED,
    283283                /* translators: %s: The error message. */
    284                 sprintf( __( 'An error occurred: %s', 'LION' ), $e->getMessage() )
     284                sprintf( __( 'An error occurred: %s', 'solid-performance' ), $e->getMessage() )
    285285            );
    286286        }
    287287
    288         $force_text = $force ? __( 'Preload & Refresh All', 'LION' ) : __( 'Preload Uncached Pages', 'LION' );
     288        $force_text = $force ? __( 'Preload & Refresh All', 'solid-performance' ) : __( 'Preload Uncached Pages', 'solid-performance' );
    289289
    290290        return new WP_REST_Response(
     
    297297                        'Preparing to preload %s crawled sitemap URLs.',
    298298                        $this->preloader->count(),
    299                         'LION'
     299                        'solid-performance'
    300300                    ),
    301301                    number_format_i18n( (float) $this->preloader->count() )
     
    317317            [
    318318                'running'   => $this->preloader->is_running(),
    319                 'message'   => __( 'Preloading successfully canceled.', 'LION' ),
     319                'message'   => __( 'Preloading successfully canceled.', 'solid-performance' ),
    320320                'preloadId' => $state->id,
    321321            ]
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Regenerate.php

    r3239731 r3240351  
    6565            return new WP_Error(
    6666                'solid_performance_advanced_cache_not_regenerated',
    67                 __( 'Advanced cache file not regenerated', 'LION' ),
     67                __( 'Advanced cache file not regenerated', 'solid-performance' ),
    6868            );
    6969        }
     
    7272            [
    7373                'code'    => 'solid_performance_advanced_cache_regenerated',
    74                 'message' => __( 'Advanced cache file regenerated', 'LION' ),
     74                'message' => __( 'Advanced cache file regenerated', 'solid-performance' ),
    7575            ]
    7676        );
     
    8787            'properties' => [
    8888                'code'    => [
    89                     'description' => esc_html__( 'The identification code of the advanced cache regeneration action.', 'LION' ),
     89                    'description' => esc_html__( 'The identification code of the advanced cache regeneration action.', 'solid-performance' ),
    9090                    'type'        => 'string',
    9191                    'enum'        => [
     
    9696                ],
    9797                'message' => [
    98                     'description' => esc_html__( 'The formatted message of the advanced cache regeneration action.', 'LION' ),
     98                    'description' => esc_html__( 'The formatted message of the advanced cache regeneration action.', 'solid-performance' ),
    9999                    'type'        => 'string',
    100100                    'readonly'    => true,
  • solid-performance/trunk/src/Performance/API/Routes/Page_Cache/Status.php

    r3239731 r3240351  
    6666                    'enabled' => true,
    6767                    'code'    => 'solid_performance_page_cache_on',
    68                     'message' => __( 'Page caching is currently enabled', 'LION' ),
     68                    'message' => __( 'Page caching is currently enabled', 'solid-performance' ),
    6969                ]
    7070            );
     
    7575                'enabled' => false,
    7676                'code'    => 'solid_performance_page_cache_off',
    77                 'message' => __( 'Page caching is currently disabled', 'LION' ),
     77                'message' => __( 'Page caching is currently disabled', 'solid-performance' ),
    7878            ]
    7979        );
     
    9090            'properties' => [
    9191                'enabled' => [
    92                     'description' => esc_html__( 'The current status of the page cache.', 'LION' ),
     92                    'description' => esc_html__( 'The current status of the page cache.', 'solid-performance' ),
    9393                    'type'        => 'boolean',
    9494                    'readonly'    => true,
    9595                ],
    9696                'code'    => [
    97                     'description' => esc_html__( 'The identification code of the setting state.', 'LION' ),
     97                    'description' => esc_html__( 'The identification code of the setting state.', 'solid-performance' ),
    9898                    'type'        => 'string',
    9999                    'enum'        => [
     
    104104                ],
    105105                'message' => [
    106                     'description' => esc_html__( 'The formatted message of the setting state.', 'LION' ),
     106                    'description' => esc_html__( 'The formatted message of the setting state.', 'solid-performance' ),
    107107                    'type'        => 'string',
    108108                    'readonly'    => true,
  • solid-performance/trunk/src/Performance/Admin/Admin_Bar.php

    r3239731 r3240351  
    7777                    'id'     => self::PURGE_CACHE_CURRENT_ID,
    7878                    'parent' => self::MENU_ID,
    79                     'title'  => esc_html__( 'Clear Current Page', 'LION' ),
     79                    'title'  => esc_html__( 'Clear Current Page', 'solid-performance' ),
    8080                    'href'   => add_query_arg(
    8181                        [
  • solid-performance/trunk/src/Performance/Admin/Purge_Listener.php

    r3239731 r3240351  
    6666
    6767        if ( ! current_user_can( 'manage_options' ) ) {
    68             wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'LION' ) );
     68            wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'solid-performance' ) );
    6969        }
    7070
     
    7777        // Prevent full page caches if a preloader is running.
    7878        if ( $this->preloader->is_running() ) {
    79             wp_die( esc_html__( 'The site is currently preloading. Cancel preloading or try again later.', 'LION' ) );
     79            wp_die( esc_html__( 'The site is currently preloading. Cancel preloading or try again later.', 'solid-performance' ) );
    8080        }
    8181
     
    103103
    104104        if ( ! current_user_can( 'manage_options' ) ) {
    105             wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'LION' ) );
     105            wp_die( esc_html__( 'Sorry, you are not allowed to manage the cache on this site.', 'solid-performance' ) );
    106106        }
    107107
  • solid-performance/trunk/src/Performance/Admin/Settings_Page.php

    r3239731 r3240351  
    125125                                    'cache_dir'   => [
    126126                                        'type'        => 'string',
    127                                         'description' => esc_html__( 'The directory where cache files are stored.', 'LION' ),
     127                                        'description' => esc_html__( 'The directory where cache files are stored.', 'solid-performance' ),
    128128                                    ],
    129129                                    'enabled'     => [
    130130                                        'type'        => 'boolean',
    131                                         'description' => esc_html__( 'The current status of the page cache.', 'LION' ),
     131                                        'description' => esc_html__( 'The current status of the page cache.', 'solid-performance' ),
    132132                                    ],
    133133                                    'debug'       => [
    134134                                        'type'        => 'boolean',
    135                                         'description' => esc_html__( 'The current status of debug mode.', 'LION' ),
     135                                        'description' => esc_html__( 'The current status of debug mode.', 'solid-performance' ),
    136136                                    ],
    137137                                    'expiration'  => [
    138138                                        'type'        => 'integer',
    139                                         'description' => esc_html__( 'The number of seconds caches should exist before regenerating.', 'LION' ),
     139                                        'description' => esc_html__( 'The number of seconds caches should exist before regenerating.', 'solid-performance' ),
    140140                                    ],
    141141                                    'exclusions'  => [
    142142                                        'type'        => 'array',
    143                                         'description' => esc_html__( 'The rules to use in determining which urls should not be cached.', 'LION' ),
     143                                        'description' => esc_html__( 'The rules to use in determining which urls should not be cached.', 'solid-performance' ),
    144144                                        'items'       => [
    145145                                            'type' => 'string',
     
    151151                                            'enabled' => [
    152152                                                'type' => 'boolean',
    153                                                 'description' => esc_html__( 'Whether storing and serving compressed cache files is enabled.', 'LION' ),
     153                                                'description' => esc_html__( 'Whether storing and serving compressed cache files is enabled.', 'solid-performance' ),
    154154                                            ],
    155155                                        ],
     
    160160                                            'high_performance_mode' => [
    161161                                                'type' => 'boolean',
    162                                                 'description' => esc_html__( 'Preload with the maximum batch size. Automatically disabled if we encounter errors.', 'LION' ),
     162                                                'description' => esc_html__( 'Preload with the maximum batch size. Automatically disabled if we encounter errors.', 'solid-performance' ),
    163163                                            ],
    164164                                        ],
  • solid-performance/trunk/src/Performance/Notices/Notice.php

    r3239731 r3240351  
    148148                sprintf(
    149149                    // Translators: a list of allowed values: info, success, warning, error.
    150                     __( 'Notice $type must be one of: %s', 'LION' ),
     150                    __( 'Notice $type must be one of: %s', 'solid-performance' ),
    151151                    implode( ', ', self::ALLOWED_TYPES )
    152152                )
     
    155155
    156156        if ( empty( $message ) ) {
    157             throw new InvalidArgumentException( __( 'The $message cannot be empty', 'LION' ) );
     157            throw new InvalidArgumentException( __( 'The $message cannot be empty', 'solid-performance' ) );
    158158        }
    159159
  • solid-performance/trunk/src/Performance/Notices/Notices/Advanced_Cache.php

    r3239731 r3240351  
    6262            __(
    6363                '<strong>Solid Performance is not caching!</strong> visit the <a href="%1$s">Settings Page</a> and regenerate the advanced-cache.php file under the <em>Advanced</em> tab.',
    64                 'LION'
     64                'solid-performance'
    6565            ),
    6666            esc_url( admin_url( 'options-general.php?page=swpsp-settings' ) )
  • solid-performance/trunk/src/Performance/Notices/Notices/Permalink.php

    r3239731 r3240351  
    5656            __(
    5757                '<strong>Solid Performance</strong> depends on a custom permalink structure. Please enable this in your <a href="%1$s">Permalink Settings</a> to begin speeding up your website.',
    58                 'LION'
     58                'solid-performance'
    5959            ),
    6060            esc_url( admin_url( 'options-permalink.php' ) )
  • solid-performance/trunk/src/Performance/Notices/Notices/Wp_Cache_Constant.php

    r3239731 r3240351  
    5757            __(
    5858                '<strong>Solid Performance is not caching!</strong> <code>%1$s</code> is missing or set to false in wp-config.php.',
    59                 'LION'
     59                'solid-performance'
    6060            ),
    6161            'define( \'WP_CACHE\', true );'
  • solid-performance/trunk/src/Performance/Preload/Preload_Scheduler.php

    r3239731 r3240351  
    109109                sprintf(
    110110                    /* translators: %s: The source of what initiated or canceled the preloader. */
    111                     __( 'A preloader is already running via "%s"', 'LION' ),
     111                    __( 'A preloader is already running via "%s"', 'solid-performance' ),
    112112                    $this->lock->owner()
    113113                )
  • solid-performance/trunk/src/Performance/Telemetry/Health_Data.php

    r3239731 r3240351  
    8181    public function add_summary_to_telemetry( array $info ): array {
    8282        $page_cache          = swpsp_config_get( 'page_cache' );
    83         $page_cache_status   = $page_cache['enabled'] ? esc_html__( 'Enabled', 'LION' ) : esc_html__( 'Disabled', 'LION' );
    84         $cache_dir_writeable = swpsp_direct_filesystem()->is_writable( $page_cache['cache_dir'] ) ? esc_html__( 'Writable', 'LION' ) : esc_html__( 'Not Writable', 'LION' );
    85         $debug_mode_status   = $page_cache['debug'] ? esc_html__( 'Enabled', 'LION' ) : esc_html__( 'Disabled', 'LION' );
     83        $page_cache_status   = $page_cache['enabled'] ? esc_html__( 'Enabled', 'solid-performance' ) : esc_html__( 'Disabled', 'solid-performance' );
     84        $cache_dir_writeable = swpsp_direct_filesystem()->is_writable( $page_cache['cache_dir'] ) ? esc_html__( 'Writable', 'solid-performance' ) : esc_html__( 'Not Writable', 'solid-performance' );
     85        $debug_mode_status   = $page_cache['debug'] ? esc_html__( 'Enabled', 'solid-performance' ) : esc_html__( 'Disabled', 'solid-performance' );
    8686        $exclusion_count     = count( $page_cache['exclusions'] );
    8787        $enabled_compressors = implode(
     
    104104                        '%s mins',
    105105                        $label,
    106                         'LION'
     106                        'solid-performance'
    107107                    ),
    108108                    $label
     
    122122
    123123        $info['solid-performance'] = [
    124             'label'  => esc_html__( 'Solid Performance', 'LION' ),
     124            'label'  => esc_html__( 'Solid Performance', 'solid-performance' ),
    125125            'fields' => [
    126126                'page_cache_status'        => [
    127                     'label' => esc_html__( 'Page cache', 'LION' ),
     127                    'label' => esc_html__( 'Page cache', 'solid-performance' ),
    128128                    'value' => $page_cache_status,
    129129                    'debug' => strtolower( $page_cache_status ),
    130130                ],
    131131                'cache_directory'          => [
    132                     'label' => esc_html__( 'Cache directory', 'LION' ),
     132                    'label' => esc_html__( 'Cache directory', 'solid-performance' ),
    133133                    'value' => $page_cache['cache_dir'],
    134134                    'debug' => $page_cache['cache_dir'],
    135135                ],
    136136                'cache_directory_writable' => [
    137                     'label' => esc_html__( 'Cache directory permissions', 'LION' ),
     137                    'label' => esc_html__( 'Cache directory permissions', 'solid-performance' ),
    138138                    'value' => $cache_dir_writeable,
    139139                    'debug' => strtolower( $cache_dir_writeable ),
    140140                ],
    141141                'debug_mode'               => [
    142                     'label' => esc_html__( 'Debug mode', 'LION' ),
     142                    'label' => esc_html__( 'Debug mode', 'solid-performance' ),
    143143                    'value' => $debug_mode_status,
    144144                    'debug' => strtolower( $debug_mode_status ),
    145145                ],
    146146                'exclusion_count'          => [
    147                     'label' => esc_html__( 'Number of custom exclusions', 'LION' ),
     147                    'label' => esc_html__( 'Number of custom exclusions', 'solid-performance' ),
    148148                    'value' => $exclusion_count,
    149149                ],
    150150                'compression'              => [
    151                     'label' => esc_html__( 'Supported compression algorithms', 'LION' ),
     151                    'label' => esc_html__( 'Supported compression algorithms', 'solid-performance' ),
    152152                    'value' => $enabled_compressors,
    153153                    'debug' => $enabled_compressors,
    154154                ],
    155155                'system_load'              => [
    156                     'label' => esc_html__( 'System load average', 'LION' ),
     156                    'label' => esc_html__( 'System load average', 'solid-performance' ),
    157157                    'value' => $system_load,
    158158                    'debug' => $system_load_debug,
    159159                ],
    160160                'core_count'               => [
    161                     'label' => esc_html__( 'System CPU core count', 'LION' ),
     161                    'label' => esc_html__( 'System CPU core count', 'solid-performance' ),
    162162                    'value' => $core_count,
    163163                ],
    164164                'high_performance_mode'    => [
    165                     'label' => esc_html__( 'High performance mode', 'LION' ),
    166                     'value' => $this->preload_mode_manager->is_high_performance_mode() ? esc_html__( 'Enabled', 'LION' ) : esc_html__( 'Disabled', 'LION' ),
     165                    'label' => esc_html__( 'High performance mode', 'solid-performance' ),
     166                    'value' => $this->preload_mode_manager->is_high_performance_mode() ? esc_html__( 'Enabled', 'solid-performance' ) : esc_html__( 'Disabled', 'solid-performance' ),
    167167                    'debug' => $this->preload_mode_manager->is_high_performance_mode(),
    168168                ],
  • solid-performance/trunk/src/Performance/Telemetry/Modal.php

    r3239731 r3240351  
    6363        $args['heading'] = sprintf(
    6464            // Translators: The plugin name.
    65             esc_html__( 'We hope you love %s.', 'LION' ),
     65            esc_html__( 'We hope you love %s.', 'solid-performance' ),
    6666            $args['plugin_name']
    6767        );
     
    8282        return sprintf(
    8383            // Translators: The User's name.
    84             esc_html__( 'Hi %s. SolidWP is dedicated to delivering top-notch services, and your input helps us deliver on that promise. By opting into our feedback program, you help enhance the Solid Performance experience for yourself and all of our users. When you opt in, you allow us to access certain data related to how you use our products, which we use responsibly to tailor our products to your needs. You will additionally receive updates, important product and marketing information, and exclusive offers via email. You may unsubscribe at any time. We take data privacy seriously and adhere to the highest standards respecting all relevant regulations and guidelines. To join and help shape the future of Solid Performance and StellarWP, simply click “Allow & Continue” below.', 'LION' ),
     84            esc_html__( 'Hi %s. SolidWP is dedicated to delivering top-notch services, and your input helps us deliver on that promise. By opting into our feedback program, you help enhance the Solid Performance experience for yourself and all of our users. When you opt in, you allow us to access certain data related to how you use our products, which we use responsibly to tailor our products to your needs. You will additionally receive updates, important product and marketing information, and exclusive offers via email. You may unsubscribe at any time. We take data privacy seriously and adhere to the highest standards respecting all relevant regulations and guidelines. To join and help shape the future of Solid Performance and StellarWP, simply click “Allow & Continue” below.', 'solid-performance' ),
    8585            $user_name,
    8686        );
  • solid-performance/trunk/src/views/notices/welcome.php

    r3239731 r3240351  
    1414<div class="notice-content">
    1515    <div class="notice-title">
    16         <h2><?php echo esc_html__( 'Welcome to Solid Performance!', 'LION' ); ?></h2>
     16        <h2><?php echo esc_html__( 'Welcome to Solid Performance!', 'solid-performance' ); ?></h2>
    1717        <span class="notice-status">
    1818            <img src="<?php echo esc_url( plugin_dir_url( SWPSP_PLUGIN_FILE ) . '/images/check.svg' ); ?>" alt="A green check mark"/>
    19             <?php echo esc_html__( 'Solid Performance activated', 'LION' ); ?>
     19            <?php echo esc_html__( 'Solid Performance activated', 'solid-performance' ); ?>
    2020        </span>
    2121    </div>
    22     <p><?php echo esc_html__( 'The page cache is enabled. Visit the Solid Performance settings page to customize your configuration.', 'LION' ); ?></p>
     22    <p><?php echo esc_html__( 'The page cache is enabled. Visit the Solid Performance settings page to customize your configuration.', 'solid-performance' ); ?></p>
    2323</div>
    24 <a class="settings-page-button" href="<?php echo esc_url( admin_url( 'options-general.php?page=' . \SolidWP\Performance\Admin\Settings_Page::MENU_SLUG ) ); ?>"><?php echo esc_html__( 'Go to settings', 'LION' ); ?></a>
     24<a class="settings-page-button" href="<?php echo esc_url( admin_url( 'options-general.php?page=' . \SolidWP\Performance\Admin\Settings_Page::MENU_SLUG ) ); ?>"><?php echo esc_html__( 'Go to settings', 'solid-performance' ); ?></a>
  • solid-performance/trunk/vendor/composer/installed.json

    r3239731 r3240351  
    5454            },
    5555            "install-path": "../fire015/flintstone"
    56         },
    57         {
    58             "name": "illuminate/collections",
    59             "version": "v8.83.27",
    60             "version_normalized": "8.83.27.0",
    61             "source": {
    62                 "type": "git",
    63                 "url": "https://github.com/illuminate/collections.git",
    64                 "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4"
    65             },
    66             "dist": {
    67                 "type": "zip",
    68                 "url": "https://api.github.com/repos/illuminate/collections/zipball/705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
    69                 "reference": "705a4e1ef93cd492c45b9b3e7911cccc990a07f4",
    70                 "shasum": ""
    71             },
    72             "require": {
    73                 "illuminate/contracts": "^8.0",
    74                 "illuminate/macroable": "^8.0",
    75                 "php": "^7.3|^8.0"
    76             },
    77             "suggest": {
    78                 "symfony/var-dumper": "Required to use the dump method (^5.4)."
    79             },
    80             "time": "2022-06-23T15:29:49+00:00",
    81             "type": "library",
    82             "extra": {
    83                 "branch-alias": {
    84                     "dev-master": "8.x-dev"
    85                 }
    86             },
    87             "installation-source": "dist",
    88             "autoload": {
    89                 "files": [
    90                     "helpers.php"
    91                 ],
    92                 "psr-4": {
    93                     "Illuminate\\Support\\": ""
    94                 }
    95             },
    96             "notification-url": "https://packagist.org/downloads/",
    97             "license": [
    98                 "MIT"
    99             ],
    100             "authors": [
    101                 {
    102                     "name": "Taylor Otwell",
    103                     "email": "[email protected]"
    104                 }
    105             ],
    106             "description": "The Illuminate Collections package.",
    107             "homepage": "https://laravel.com",
    108             "support": {
    109                 "issues": "https://github.com/laravel/framework/issues",
    110                 "source": "https://github.com/laravel/framework"
    111             },
    112             "install-path": "../illuminate/collections"
    113         },
    114         {
    115             "name": "illuminate/contracts",
    116             "version": "v8.83.27",
    117             "version_normalized": "8.83.27.0",
    118             "source": {
    119                 "type": "git",
    120                 "url": "https://github.com/illuminate/contracts.git",
    121                 "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d"
    122             },
    123             "dist": {
    124                 "type": "zip",
    125                 "url": "https://api.github.com/repos/illuminate/contracts/zipball/5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
    126                 "reference": "5e0fd287a1b22a6b346a9f7cd484d8cf0234585d",
    127                 "shasum": ""
    128             },
    129             "require": {
    130                 "php": "^7.3|^8.0",
    131                 "psr/container": "^1.0",
    132                 "psr/simple-cache": "^1.0"
    133             },
    134             "time": "2022-01-13T14:47:47+00:00",
    135             "type": "library",
    136             "extra": {
    137                 "branch-alias": {
    138                     "dev-master": "8.x-dev"
    139                 }
    140             },
    141             "installation-source": "dist",
    142             "autoload": {
    143                 "psr-4": {
    144                     "Illuminate\\Contracts\\": ""
    145                 }
    146             },
    147             "notification-url": "https://packagist.org/downloads/",
    148             "license": [
    149                 "MIT"
    150             ],
    151             "authors": [
    152                 {
    153                     "name": "Taylor Otwell",
    154                     "email": "[email protected]"
    155                 }
    156             ],
    157             "description": "The Illuminate Contracts package.",
    158             "homepage": "https://laravel.com",
    159             "support": {
    160                 "issues": "https://github.com/laravel/framework/issues",
    161                 "source": "https://github.com/laravel/framework"
    162             },
    163             "install-path": "../illuminate/contracts"
    164         },
    165         {
    166             "name": "illuminate/macroable",
    167             "version": "v8.83.27",
    168             "version_normalized": "8.83.27.0",
    169             "source": {
    170                 "type": "git",
    171                 "url": "https://github.com/illuminate/macroable.git",
    172                 "reference": "aed81891a6e046fdee72edd497f822190f61c162"
    173             },
    174             "dist": {
    175                 "type": "zip",
    176                 "url": "https://api.github.com/repos/illuminate/macroable/zipball/aed81891a6e046fdee72edd497f822190f61c162",
    177                 "reference": "aed81891a6e046fdee72edd497f822190f61c162",
    178                 "shasum": ""
    179             },
    180             "require": {
    181                 "php": "^7.3|^8.0"
    182             },
    183             "time": "2021-11-16T13:57:03+00:00",
    184             "type": "library",
    185             "extra": {
    186                 "branch-alias": {
    187                     "dev-master": "8.x-dev"
    188                 }
    189             },
    190             "installation-source": "dist",
    191             "autoload": {
    192                 "psr-4": {
    193                     "Illuminate\\Support\\": ""
    194                 }
    195             },
    196             "notification-url": "https://packagist.org/downloads/",
    197             "license": [
    198                 "MIT"
    199             ],
    200             "authors": [
    201                 {
    202                     "name": "Taylor Otwell",
    203                     "email": "[email protected]"
    204                 }
    205             ],
    206             "description": "The Illuminate Macroable package.",
    207             "homepage": "https://laravel.com",
    208             "support": {
    209                 "issues": "https://github.com/laravel/framework/issues",
    210                 "source": "https://github.com/laravel/framework"
    211             },
    212             "install-path": "../illuminate/macroable"
    21356        },
    21457        {
     
    752595        },
    753596        {
    754             "name": "psr/simple-cache",
    755             "version": "1.0.1",
    756             "version_normalized": "1.0.1.0",
    757             "source": {
    758                 "type": "git",
    759                 "url": "https://github.com/php-fig/simple-cache.git",
    760                 "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
    761             },
    762             "dist": {
    763                 "type": "zip",
    764                 "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
    765                 "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
    766                 "shasum": ""
    767             },
    768             "require": {
    769                 "php": ">=5.3.0"
    770             },
    771             "time": "2017-10-23T01:57:42+00:00",
    772             "type": "library",
    773             "extra": {
    774                 "branch-alias": {
    775                     "dev-master": "1.0.x-dev"
    776                 }
    777             },
    778             "installation-source": "dist",
    779             "autoload": {
    780                 "psr-4": {
    781                     "Psr\\SimpleCache\\": "src/"
    782                 }
    783             },
    784             "notification-url": "https://packagist.org/downloads/",
    785             "license": [
    786                 "MIT"
    787             ],
    788             "authors": [
    789                 {
    790                     "name": "PHP-FIG",
    791                     "homepage": "http://www.php-fig.org/"
    792                 }
    793             ],
    794             "description": "Common interfaces for simple caching",
    795             "keywords": [
    796                 "cache",
    797                 "caching",
    798                 "psr",
    799                 "psr-16",
    800                 "simple-cache"
    801             ],
    802             "support": {
    803                 "source": "https://github.com/php-fig/simple-cache/tree/master"
    804             },
    805             "install-path": "../psr/simple-cache"
    806         },
    807         {
    808597            "name": "ralouphie/getallheaders",
    809598            "version": "3.0.3",
     
    900689        {
    901690            "name": "stellarwp/arrays",
    902             "version": "1.3.0",
    903             "version_normalized": "1.3.0.0",
     691            "version": "1.3.1",
     692            "version_normalized": "1.3.1.0",
    904693            "source": {
    905694                "type": "git",
    906695                "url": "https://github.com/stellarwp/arrays.git",
    907                 "reference": "36c35ffdf3fbe5dad4c2b40308e35065caf8fe61"
    908             },
    909             "dist": {
    910                 "type": "zip",
    911                 "url": "https://api.github.com/repos/stellarwp/arrays/zipball/36c35ffdf3fbe5dad4c2b40308e35065caf8fe61",
    912                 "reference": "36c35ffdf3fbe5dad4c2b40308e35065caf8fe61",
    913                 "shasum": ""
    914             },
    915             "require": {
    916                 "illuminate/collections": "^8.0"
     696                "reference": "315a9b2018ac6f2475a346c89b1d7120ae07c218"
     697            },
     698            "dist": {
     699                "type": "zip",
     700                "url": "https://api.github.com/repos/stellarwp/arrays/zipball/315a9b2018ac6f2475a346c89b1d7120ae07c218",
     701                "reference": "315a9b2018ac6f2475a346c89b1d7120ae07c218",
     702                "shasum": ""
    917703            },
    918704            "require-dev": {
     
    923709                "szepeviktor/phpstan-wordpress": "^1.1"
    924710            },
    925             "time": "2025-01-17T22:57:46+00:00",
     711            "time": "2025-02-07T18:23:13+00:00",
    926712            "type": "library",
    927713            "installation-source": "dist",
     
    948734            "support": {
    949735                "issues": "https://github.com/stellarwp/arrays/issues",
    950                 "source": "https://github.com/stellarwp/arrays/tree/1.3.0"
     736                "source": "https://github.com/stellarwp/arrays/tree/1.3.1"
    951737            },
    952738            "install-path": "../stellarwp/arrays"
     
    12461032        {
    12471033            "name": "stellarwp/telemetry",
    1248             "version": "2.3.2",
    1249             "version_normalized": "2.3.2.0",
     1034            "version": "2.3.3",
     1035            "version_normalized": "2.3.3.0",
    12501036            "source": {
    12511037                "type": "git",
    12521038                "url": "https://github.com/stellarwp/telemetry.git",
    1253                 "reference": "a4bc84f1b9539ae5418e76caab31355191273a9c"
    1254             },
    1255             "dist": {
    1256                 "type": "zip",
    1257                 "url": "https://api.github.com/repos/stellarwp/telemetry/zipball/a4bc84f1b9539ae5418e76caab31355191273a9c",
    1258                 "reference": "a4bc84f1b9539ae5418e76caab31355191273a9c",
     1039                "reference": "cb302096350b047ab203367c8198bd0c5d1805cc"
     1040            },
     1041            "dist": {
     1042                "type": "zip",
     1043                "url": "https://api.github.com/repos/stellarwp/telemetry/zipball/cb302096350b047ab203367c8198bd0c5d1805cc",
     1044                "reference": "cb302096350b047ab203367c8198bd0c5d1805cc",
    12591045                "shasum": ""
    12601046            },
     
    12751061                "wp-coding-standards/wpcs": "^3.0.0"
    12761062            },
    1277             "time": "2024-01-08T18:55:26+00:00",
     1063            "time": "2025-01-28T21:13:55+00:00",
    12781064            "type": "library",
    12791065            "installation-source": "dist",
     
    12921078            "support": {
    12931079                "issues": "https://github.com/stellarwp/telemetry/issues",
    1294                 "source": "https://github.com/stellarwp/telemetry/tree/2.3.2"
     1080                "source": "https://github.com/stellarwp/telemetry/tree/2.3.3"
    12951081            },
    12961082            "install-path": "../stellarwp/telemetry"
  • solid-performance/trunk/vendor/composer/installed.php

    r3239731 r3240351  
    22    'root' => array(
    33        'name' => 'ithemes/solid-performance',
    4         'pretty_version' => '1.4.0',
    5         'version' => '1.4.0.0',
    6         'reference' => 'edd4ed5ae52969e573fd932ba5f052cba5d8e6cc',
     4        'pretty_version' => '1.4.1',
     5        'version' => '1.4.1.0',
     6        'reference' => '3f9fd2b0497af77c92b0cfde3b6007c40cb15ef5',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2020            'dev_requirement' => false,
    2121        ),
    22         'illuminate/collections' => array(
    23             'pretty_version' => 'v8.83.27',
    24             'version' => '8.83.27.0',
    25             'reference' => '705a4e1ef93cd492c45b9b3e7911cccc990a07f4',
    26             'type' => 'library',
    27             'install_path' => __DIR__ . '/../illuminate/collections',
    28             'aliases' => array(),
    29             'dev_requirement' => false,
    30         ),
    31         'illuminate/contracts' => array(
    32             'pretty_version' => 'v8.83.27',
    33             'version' => '8.83.27.0',
    34             'reference' => '5e0fd287a1b22a6b346a9f7cd484d8cf0234585d',
    35             'type' => 'library',
    36             'install_path' => __DIR__ . '/../illuminate/contracts',
    37             'aliases' => array(),
    38             'dev_requirement' => false,
    39         ),
    40         'illuminate/macroable' => array(
    41             'pretty_version' => 'v8.83.27',
    42             'version' => '8.83.27.0',
    43             'reference' => 'aed81891a6e046fdee72edd497f822190f61c162',
    44             'type' => 'library',
    45             'install_path' => __DIR__ . '/../illuminate/macroable',
    46             'aliases' => array(),
    47             'dev_requirement' => false,
    48         ),
    4922        'ithemes/solid-performance' => array(
    50             'pretty_version' => '1.4.0',
    51             'version' => '1.4.0.0',
    52             'reference' => 'edd4ed5ae52969e573fd932ba5f052cba5d8e6cc',
     23            'pretty_version' => '1.4.1',
     24            'version' => '1.4.1.0',
     25            'reference' => '3f9fd2b0497af77c92b0cfde3b6007c40cb15ef5',
    5326            'type' => 'wordpress-plugin',
    5427            'install_path' => __DIR__ . '/../../',
     
    152125            ),
    153126        ),
    154         'psr/simple-cache' => array(
    155             'pretty_version' => '1.0.1',
    156             'version' => '1.0.1.0',
    157             'reference' => '408d5eafb83c57f6365a3ca330ff23aa4a5fa39b',
    158             'type' => 'library',
    159             'install_path' => __DIR__ . '/../psr/simple-cache',
    160             'aliases' => array(),
    161             'dev_requirement' => false,
    162         ),
    163127        'ralouphie/getallheaders' => array(
    164128            'pretty_version' => '3.0.3',
     
    180144        ),
    181145        'stellarwp/arrays' => array(
    182             'pretty_version' => '1.3.0',
    183             'version' => '1.3.0.0',
    184             'reference' => '36c35ffdf3fbe5dad4c2b40308e35065caf8fe61',
     146            'pretty_version' => '1.3.1',
     147            'version' => '1.3.1.0',
     148            'reference' => '315a9b2018ac6f2475a346c89b1d7120ae07c218',
    185149            'type' => 'library',
    186150            'install_path' => __DIR__ . '/../stellarwp/arrays',
     
    234198        ),
    235199        'stellarwp/telemetry' => array(
    236             'pretty_version' => '2.3.2',
    237             'version' => '2.3.2.0',
    238             'reference' => 'a4bc84f1b9539ae5418e76caab31355191273a9c',
     200            'pretty_version' => '2.3.3',
     201            'version' => '2.3.3.0',
     202            'reference' => 'cb302096350b047ab203367c8198bd0c5d1805cc',
    239203            'type' => 'library',
    240204            'install_path' => __DIR__ . '/../stellarwp/telemetry',
  • solid-performance/trunk/vendor/vendor-prefixed/autoload-classmap.php

    r3239731 r3240351  
    183183   'SolidWP\Performance\Symfony\Component\VarDumper\Dumper\HtmlDumper' => $strauss_src . '/symfony/var-dumper/Dumper/HtmlDumper.php',
    184184   'SolidWP\Performance\Symfony\Component\VarDumper\VarDumper' => $strauss_src . '/symfony/var-dumper/VarDumper.php',
    185    'SolidWP\Performance\Illuminate\Contracts\Http\Kernel' => $strauss_src . '/illuminate/contracts/Http/Kernel.php',
    186    'SolidWP\Performance\Illuminate\Contracts\Routing\UrlRoutable' => $strauss_src . '/illuminate/contracts/Routing/UrlRoutable.php',
    187    'SolidWP\Performance\Illuminate\Contracts\Routing\ResponseFactory' => $strauss_src . '/illuminate/contracts/Routing/ResponseFactory.php',
    188    'SolidWP\Performance\Illuminate\Contracts\Routing\BindingRegistrar' => $strauss_src . '/illuminate/contracts/Routing/BindingRegistrar.php',
    189    'SolidWP\Performance\Illuminate\Contracts\Routing\UrlGenerator' => $strauss_src . '/illuminate/contracts/Routing/UrlGenerator.php',
    190    'SolidWP\Performance\Illuminate\Contracts\Routing\Registrar' => $strauss_src . '/illuminate/contracts/Routing/Registrar.php',
    191    'SolidWP\Performance\Illuminate\Contracts\Session\Session' => $strauss_src . '/illuminate/contracts/Session/Session.php',
    192    'SolidWP\Performance\Illuminate\Contracts\Notifications\Dispatcher' => $strauss_src . '/illuminate/contracts/Notifications/Dispatcher.php',
    193    'SolidWP\Performance\Illuminate\Contracts\Notifications\Factory' => $strauss_src . '/illuminate/contracts/Notifications/Factory.php',
    194    'SolidWP\Performance\Illuminate\Contracts\Auth\Authenticatable' => $strauss_src . '/illuminate/contracts/Auth/Authenticatable.php',
    195    'SolidWP\Performance\Illuminate\Contracts\Auth\UserProvider' => $strauss_src . '/illuminate/contracts/Auth/UserProvider.php',
    196    'SolidWP\Performance\Illuminate\Contracts\Auth\Middleware\AuthenticatesRequests' => $strauss_src . '/illuminate/contracts/Auth/Middleware/AuthenticatesRequests.php',
    197    'SolidWP\Performance\Illuminate\Contracts\Auth\StatefulGuard' => $strauss_src . '/illuminate/contracts/Auth/StatefulGuard.php',
    198    'SolidWP\Performance\Illuminate\Contracts\Auth\Access\Gate' => $strauss_src . '/illuminate/contracts/Auth/Access/Gate.php',
    199    'SolidWP\Performance\Illuminate\Contracts\Auth\Access\Authorizable' => $strauss_src . '/illuminate/contracts/Auth/Access/Authorizable.php',
    200    'SolidWP\Performance\Illuminate\Contracts\Auth\Factory' => $strauss_src . '/illuminate/contracts/Auth/Factory.php',
    201    'SolidWP\Performance\Illuminate\Contracts\Auth\CanResetPassword' => $strauss_src . '/illuminate/contracts/Auth/CanResetPassword.php',
    202    'SolidWP\Performance\Illuminate\Contracts\Auth\SupportsBasicAuth' => $strauss_src . '/illuminate/contracts/Auth/SupportsBasicAuth.php',
    203    'SolidWP\Performance\Illuminate\Contracts\Auth\PasswordBroker' => $strauss_src . '/illuminate/contracts/Auth/PasswordBroker.php',
    204    'SolidWP\Performance\Illuminate\Contracts\Auth\MustVerifyEmail' => $strauss_src . '/illuminate/contracts/Auth/MustVerifyEmail.php',
    205    'SolidWP\Performance\Illuminate\Contracts\Auth\Guard' => $strauss_src . '/illuminate/contracts/Auth/Guard.php',
    206    'SolidWP\Performance\Illuminate\Contracts\Auth\PasswordBrokerFactory' => $strauss_src . '/illuminate/contracts/Auth/PasswordBrokerFactory.php',
    207    'SolidWP\Performance\Illuminate\Contracts\Encryption\StringEncrypter' => $strauss_src . '/illuminate/contracts/Encryption/StringEncrypter.php',
    208    'SolidWP\Performance\Illuminate\Contracts\Encryption\Encrypter' => $strauss_src . '/illuminate/contracts/Encryption/Encrypter.php',
    209    'SolidWP\Performance\Illuminate\Contracts\Encryption\EncryptException' => $strauss_src . '/illuminate/contracts/Encryption/EncryptException.php',
    210    'SolidWP\Performance\Illuminate\Contracts\Encryption\DecryptException' => $strauss_src . '/illuminate/contracts/Encryption/DecryptException.php',
    211    'SolidWP\Performance\Illuminate\Contracts\View\View' => $strauss_src . '/illuminate/contracts/View/View.php',
    212    'SolidWP\Performance\Illuminate\Contracts\View\Factory' => $strauss_src . '/illuminate/contracts/View/Factory.php',
    213    'SolidWP\Performance\Illuminate\Contracts\View\Engine' => $strauss_src . '/illuminate/contracts/View/Engine.php',
    214    'SolidWP\Performance\Illuminate\Contracts\Support\ValidatedData' => $strauss_src . '/illuminate/contracts/Support/ValidatedData.php',
    215    'SolidWP\Performance\Illuminate\Contracts\Support\DeferrableProvider' => $strauss_src . '/illuminate/contracts/Support/DeferrableProvider.php',
    216    'SolidWP\Performance\Illuminate\Contracts\Support\Jsonable' => $strauss_src . '/illuminate/contracts/Support/Jsonable.php',
    217    'SolidWP\Performance\Illuminate\Contracts\Support\MessageProvider' => $strauss_src . '/illuminate/contracts/Support/MessageProvider.php',
    218    'SolidWP\Performance\Illuminate\Contracts\Support\Responsable' => $strauss_src . '/illuminate/contracts/Support/Responsable.php',
    219    'SolidWP\Performance\Illuminate\Contracts\Support\MessageBag' => $strauss_src . '/illuminate/contracts/Support/MessageBag.php',
    220    'SolidWP\Performance\Illuminate\Contracts\Support\CanBeEscapedWhenCastToString' => $strauss_src . '/illuminate/contracts/Support/CanBeEscapedWhenCastToString.php',
    221    'SolidWP\Performance\Illuminate\Contracts\Support\Renderable' => $strauss_src . '/illuminate/contracts/Support/Renderable.php',
    222    'SolidWP\Performance\Illuminate\Contracts\Support\Htmlable' => $strauss_src . '/illuminate/contracts/Support/Htmlable.php',
    223    'SolidWP\Performance\Illuminate\Contracts\Support\Arrayable' => $strauss_src . '/illuminate/contracts/Support/Arrayable.php',
    224    'SolidWP\Performance\Illuminate\Contracts\Support\DeferringDisplayableValue' => $strauss_src . '/illuminate/contracts/Support/DeferringDisplayableValue.php',
    225    'SolidWP\Performance\Illuminate\Contracts\Foundation\CachesConfiguration' => $strauss_src . '/illuminate/contracts/Foundation/CachesConfiguration.php',
    226    'SolidWP\Performance\Illuminate\Contracts\Foundation\CachesRoutes' => $strauss_src . '/illuminate/contracts/Foundation/CachesRoutes.php',
    227    'SolidWP\Performance\Illuminate\Contracts\Foundation\Application' => $strauss_src . '/illuminate/contracts/Foundation/Application.php',
    228    'SolidWP\Performance\Illuminate\Contracts\Console\Application' => $strauss_src . '/illuminate/contracts/Console/Application.php',
    229    'SolidWP\Performance\Illuminate\Contracts\Console\Kernel' => $strauss_src . '/illuminate/contracts/Console/Kernel.php',
    230    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\HasBroadcastChannel' => $strauss_src . '/illuminate/contracts/Broadcasting/HasBroadcastChannel.php',
    231    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\ShouldBroadcastNow' => $strauss_src . '/illuminate/contracts/Broadcasting/ShouldBroadcastNow.php',
    232    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\Factory' => $strauss_src . '/illuminate/contracts/Broadcasting/Factory.php',
    233    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\Broadcaster' => $strauss_src . '/illuminate/contracts/Broadcasting/Broadcaster.php',
    234    'SolidWP\Performance\Illuminate\Contracts\Broadcasting\ShouldBroadcast' => $strauss_src . '/illuminate/contracts/Broadcasting/ShouldBroadcast.php',
    235    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\DeviatesCastableAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/DeviatesCastableAttributes.php',
    236    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\SupportsPartialRelations' => $strauss_src . '/illuminate/contracts/Database/Eloquent/SupportsPartialRelations.php',
    237    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\Castable' => $strauss_src . '/illuminate/contracts/Database/Eloquent/Castable.php',
    238    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\CastsInboundAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/CastsInboundAttributes.php',
    239    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\SerializesCastableAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/SerializesCastableAttributes.php',
    240    'SolidWP\Performance\Illuminate\Contracts\Database\Eloquent\CastsAttributes' => $strauss_src . '/illuminate/contracts/Database/Eloquent/CastsAttributes.php',
    241    'SolidWP\Performance\Illuminate\Contracts\Database\ModelIdentifier' => $strauss_src . '/illuminate/contracts/Database/ModelIdentifier.php',
    242    'SolidWP\Performance\Illuminate\Contracts\Database\Events\MigrationEvent' => $strauss_src . '/illuminate/contracts/Database/Events/MigrationEvent.php',
    243    'SolidWP\Performance\Illuminate\Contracts\Debug\ExceptionHandler' => $strauss_src . '/illuminate/contracts/Debug/ExceptionHandler.php',
    244    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldQueue' => $strauss_src . '/illuminate/contracts/Queue/ShouldQueue.php',
    245    'SolidWP\Performance\Illuminate\Contracts\Queue\ClearableQueue' => $strauss_src . '/illuminate/contracts/Queue/ClearableQueue.php',
    246    'SolidWP\Performance\Illuminate\Contracts\Queue\EntityNotFoundException' => $strauss_src . '/illuminate/contracts/Queue/EntityNotFoundException.php',
    247    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldBeEncrypted' => $strauss_src . '/illuminate/contracts/Queue/ShouldBeEncrypted.php',
    248    'SolidWP\Performance\Illuminate\Contracts\Queue\Factory' => $strauss_src . '/illuminate/contracts/Queue/Factory.php',
    249    'SolidWP\Performance\Illuminate\Contracts\Queue\QueueableCollection' => $strauss_src . '/illuminate/contracts/Queue/QueueableCollection.php',
    250    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldBeUniqueUntilProcessing' => $strauss_src . '/illuminate/contracts/Queue/ShouldBeUniqueUntilProcessing.php',
    251    'SolidWP\Performance\Illuminate\Contracts\Queue\Queue' => $strauss_src . '/illuminate/contracts/Queue/Queue.php',
    252    'SolidWP\Performance\Illuminate\Contracts\Queue\ShouldBeUnique' => $strauss_src . '/illuminate/contracts/Queue/ShouldBeUnique.php',
    253    'SolidWP\Performance\Illuminate\Contracts\Queue\EntityResolver' => $strauss_src . '/illuminate/contracts/Queue/EntityResolver.php',
    254    'SolidWP\Performance\Illuminate\Contracts\Queue\Job' => $strauss_src . '/illuminate/contracts/Queue/Job.php',
    255    'SolidWP\Performance\Illuminate\Contracts\Queue\Monitor' => $strauss_src . '/illuminate/contracts/Queue/Monitor.php',
    256    'SolidWP\Performance\Illuminate\Contracts\Queue\QueueableEntity' => $strauss_src . '/illuminate/contracts/Queue/QueueableEntity.php',
    257    'SolidWP\Performance\Illuminate\Contracts\Events\Dispatcher' => $strauss_src . '/illuminate/contracts/Events/Dispatcher.php',
    258    'SolidWP\Performance\Illuminate\Contracts\Translation\Translator' => $strauss_src . '/illuminate/contracts/Translation/Translator.php',
    259    'SolidWP\Performance\Illuminate\Contracts\Translation\Loader' => $strauss_src . '/illuminate/contracts/Translation/Loader.php',
    260    'SolidWP\Performance\Illuminate\Contracts\Translation\HasLocalePreference' => $strauss_src . '/illuminate/contracts/Translation/HasLocalePreference.php',
    261    'SolidWP\Performance\Illuminate\Contracts\Cookie\Factory' => $strauss_src . '/illuminate/contracts/Cookie/Factory.php',
    262    'SolidWP\Performance\Illuminate\Contracts\Cookie\QueueingFactory' => $strauss_src . '/illuminate/contracts/Cookie/QueueingFactory.php',
    263    'SolidWP\Performance\Illuminate\Contracts\Config\Repository' => $strauss_src . '/illuminate/contracts/Config/Repository.php',
    264    'SolidWP\Performance\Illuminate\Contracts\Cache\Lock' => $strauss_src . '/illuminate/contracts/Cache/Lock.php',
    265    'SolidWP\Performance\Illuminate\Contracts\Cache\LockTimeoutException' => $strauss_src . '/illuminate/contracts/Cache/LockTimeoutException.php',
    266    'SolidWP\Performance\Illuminate\Contracts\Cache\Store' => $strauss_src . '/illuminate/contracts/Cache/Store.php',
    267    'SolidWP\Performance\Illuminate\Contracts\Cache\Factory' => $strauss_src . '/illuminate/contracts/Cache/Factory.php',
    268    'SolidWP\Performance\Illuminate\Contracts\Cache\Repository' => $strauss_src . '/illuminate/contracts/Cache/Repository.php',
    269    'SolidWP\Performance\Illuminate\Contracts\Cache\LockProvider' => $strauss_src . '/illuminate/contracts/Cache/LockProvider.php',
    270    'SolidWP\Performance\Illuminate\Contracts\Pagination\CursorPaginator' => $strauss_src . '/illuminate/contracts/Pagination/CursorPaginator.php',
    271    'SolidWP\Performance\Illuminate\Contracts\Pagination\Paginator' => $strauss_src . '/illuminate/contracts/Pagination/Paginator.php',
    272    'SolidWP\Performance\Illuminate\Contracts\Pagination\LengthAwarePaginator' => $strauss_src . '/illuminate/contracts/Pagination/LengthAwarePaginator.php',
    273    'SolidWP\Performance\Illuminate\Contracts\Pipeline\Hub' => $strauss_src . '/illuminate/contracts/Pipeline/Hub.php',
    274    'SolidWP\Performance\Illuminate\Contracts\Pipeline\Pipeline' => $strauss_src . '/illuminate/contracts/Pipeline/Pipeline.php',
    275    'SolidWP\Performance\Illuminate\Contracts\Bus\Dispatcher' => $strauss_src . '/illuminate/contracts/Bus/Dispatcher.php',
    276    'SolidWP\Performance\Illuminate\Contracts\Bus\QueueingDispatcher' => $strauss_src . '/illuminate/contracts/Bus/QueueingDispatcher.php',
    277    'SolidWP\Performance\Illuminate\Contracts\Redis\Connector' => $strauss_src . '/illuminate/contracts/Redis/Connector.php',
    278    'SolidWP\Performance\Illuminate\Contracts\Redis\Factory' => $strauss_src . '/illuminate/contracts/Redis/Factory.php',
    279    'SolidWP\Performance\Illuminate\Contracts\Redis\LimiterTimeoutException' => $strauss_src . '/illuminate/contracts/Redis/LimiterTimeoutException.php',
    280    'SolidWP\Performance\Illuminate\Contracts\Redis\Connection' => $strauss_src . '/illuminate/contracts/Redis/Connection.php',
    281    'SolidWP\Performance\Illuminate\Contracts\Hashing\Hasher' => $strauss_src . '/illuminate/contracts/Hashing/Hasher.php',
    282    'SolidWP\Performance\Illuminate\Contracts\Filesystem\FileExistsException' => $strauss_src . '/illuminate/contracts/Filesystem/FileExistsException.php',
    283    'SolidWP\Performance\Illuminate\Contracts\Filesystem\LockTimeoutException' => $strauss_src . '/illuminate/contracts/Filesystem/LockTimeoutException.php',
    284    'SolidWP\Performance\Illuminate\Contracts\Filesystem\Factory' => $strauss_src . '/illuminate/contracts/Filesystem/Factory.php',
    285    'SolidWP\Performance\Illuminate\Contracts\Filesystem\Cloud' => $strauss_src . '/illuminate/contracts/Filesystem/Cloud.php',
    286    'SolidWP\Performance\Illuminate\Contracts\Filesystem\Filesystem' => $strauss_src . '/illuminate/contracts/Filesystem/Filesystem.php',
    287    'SolidWP\Performance\Illuminate\Contracts\Filesystem\FileNotFoundException' => $strauss_src . '/illuminate/contracts/Filesystem/FileNotFoundException.php',
    288    'SolidWP\Performance\Illuminate\Contracts\Validation\Validator' => $strauss_src . '/illuminate/contracts/Validation/Validator.php',
    289    'SolidWP\Performance\Illuminate\Contracts\Validation\ImplicitRule' => $strauss_src . '/illuminate/contracts/Validation/ImplicitRule.php',
    290    'SolidWP\Performance\Illuminate\Contracts\Validation\DataAwareRule' => $strauss_src . '/illuminate/contracts/Validation/DataAwareRule.php',
    291    'SolidWP\Performance\Illuminate\Contracts\Validation\Factory' => $strauss_src . '/illuminate/contracts/Validation/Factory.php',
    292    'SolidWP\Performance\Illuminate\Contracts\Validation\ValidatorAwareRule' => $strauss_src . '/illuminate/contracts/Validation/ValidatorAwareRule.php',
    293    'SolidWP\Performance\Illuminate\Contracts\Validation\UncompromisedVerifier' => $strauss_src . '/illuminate/contracts/Validation/UncompromisedVerifier.php',
    294    'SolidWP\Performance\Illuminate\Contracts\Validation\ValidatesWhenResolved' => $strauss_src . '/illuminate/contracts/Validation/ValidatesWhenResolved.php',
    295    'SolidWP\Performance\Illuminate\Contracts\Validation\Rule' => $strauss_src . '/illuminate/contracts/Validation/Rule.php',
    296    'SolidWP\Performance\Illuminate\Contracts\Container\Container' => $strauss_src . '/illuminate/contracts/Container/Container.php',
    297    'SolidWP\Performance\Illuminate\Contracts\Container\BindingResolutionException' => $strauss_src . '/illuminate/contracts/Container/BindingResolutionException.php',
    298    'SolidWP\Performance\Illuminate\Contracts\Container\ContextualBindingBuilder' => $strauss_src . '/illuminate/contracts/Container/ContextualBindingBuilder.php',
    299    'SolidWP\Performance\Illuminate\Contracts\Container\CircularDependencyException' => $strauss_src . '/illuminate/contracts/Container/CircularDependencyException.php',
    300    'SolidWP\Performance\Illuminate\Contracts\Mail\Factory' => $strauss_src . '/illuminate/contracts/Mail/Factory.php',
    301    'SolidWP\Performance\Illuminate\Contracts\Mail\Mailer' => $strauss_src . '/illuminate/contracts/Mail/Mailer.php',
    302    'SolidWP\Performance\Illuminate\Contracts\Mail\MailQueue' => $strauss_src . '/illuminate/contracts/Mail/MailQueue.php',
    303    'SolidWP\Performance\Illuminate\Contracts\Mail\Mailable' => $strauss_src . '/illuminate/contracts/Mail/Mailable.php',
    304    'SolidWP\Performance\Illuminate\Support\Arr' => $strauss_src . '/illuminate/collections/Arr.php',
    305    'SolidWP\Performance\Illuminate\Support\Enumerable' => $strauss_src . '/illuminate/collections/Enumerable.php',
    306    'SolidWP\Performance\Illuminate\Support\HigherOrderWhenProxy' => $strauss_src . '/illuminate/collections/HigherOrderWhenProxy.php',
    307    'SolidWP\Performance\Illuminate\Support\Traits\EnumeratesValues' => $strauss_src . '/illuminate/collections/Traits/EnumeratesValues.php',
    308    'SolidWP\Performance\Illuminate\Support\ItemNotFoundException' => $strauss_src . '/illuminate/collections/ItemNotFoundException.php',
    309    'SolidWP\Performance\Illuminate\Support\MultipleItemsFoundException' => $strauss_src . '/illuminate/collections/MultipleItemsFoundException.php',
    310    'SolidWP\Performance\Illuminate\Support\LazyCollection' => $strauss_src . '/illuminate/collections/LazyCollection.php',
    311    'SolidWP\Performance\Illuminate\Support\Collection' => $strauss_src . '/illuminate/collections/Collection.php',
    312    'SolidWP\Performance\Illuminate\Support\HigherOrderCollectionProxy' => $strauss_src . '/illuminate/collections/HigherOrderCollectionProxy.php',
    313    'SolidWP\Performance\Illuminate\Support\Traits\Macroable' => $strauss_src . '/illuminate/macroable/Traits/Macroable.php',
    314185   'SolidWP_Performance_WPConfigTransformer' => $strauss_src . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php',
    315186   'SolidWP\Performance\Niladam\Uri\UriQuery' => $strauss_src . '/niladam/uri/src/UriQuery.php',
     
    380251   'SolidWP\Performance\Psr\Log\LoggerAwareInterface' => $strauss_src . '/psr/log/Psr/Log/LoggerAwareInterface.php',
    381252   'SolidWP\Performance\Psr\Log\LoggerAwareTrait' => $strauss_src . '/psr/log/Psr/Log/LoggerAwareTrait.php',
    382    'SolidWP\Performance\Psr\SimpleCache\CacheInterface' => $strauss_src . '/psr/simple-cache/src/CacheInterface.php',
    383    'SolidWP\Performance\Psr\SimpleCache\CacheException' => $strauss_src . '/psr/simple-cache/src/CacheException.php',
    384    'SolidWP\Performance\Psr\SimpleCache\InvalidArgumentException' => $strauss_src . '/psr/simple-cache/src/InvalidArgumentException.php',
    385253   'SolidWP\Performance\Psr\Http\Message\UploadedFileInterface' => $strauss_src . '/psr/http-message/src/UploadedFileInterface.php',
    386254   'SolidWP\Performance\Psr\Http\Message\ServerRequestInterface' => $strauss_src . '/psr/http-message/src/ServerRequestInterface.php',
  • solid-performance/trunk/vendor/vendor-prefixed/autoload-files.php

    r3239731 r3240351  
    44// @see https://github.com/BrianHenryIE/strauss/
    55
    6 require_once __DIR__ . '/illuminate/collections/helpers.php';
    76require_once __DIR__ . '/wp-cli/wp-config-transformer/src/WPConfigTransformer.php';
    87require_once __DIR__ . '/rogervila/array-diff-multidimensional/src/helpers.php';
  • solid-performance/trunk/vendor/vendor-prefixed/stellarwp/arrays/src/Arrays/Arr.php

    r3239731 r3240351  
    44
    55use ArrayAccess;
    6 use SolidWP\Performance\Illuminate\Support\Enumerable;
     6use Closure;
    77use InvalidArgumentException;
    88
     
    303303     * Determine if the given key exists in the provided array.
    304304     *
    305      * @param \ArrayAccess|Enumerable|array $array
     305     * @param \ArrayAccess|array $array
    306306     * @param string|int|float   $key
    307307     *
     
    349349        if ( is_null( $callback ) ) {
    350350            if ( empty( $array ) ) {
    351                 return value( $default );
     351                return self::value( $default );
    352352            }
    353353
     
    363363        }
    364364
    365         return value( $default );
     365        return self::value( $default );
    366366    }
    367367
     
    710710    public static function last( $array, callable $callback = null, $default = null ) {
    711711        if ( is_null( $callback ) ) {
    712             return empty( $array ) ? value( $default ) : end( $array );
     712            return empty( $array ) ? self::value( $default ) : end( $array );
    713713        }
    714714
     
    14601460        return $array;
    14611461    }
     1462
     1463    /**
     1464     * Return the default value of the given value.
     1465     *
     1466     * @template TValue
     1467     * @template TArgs
     1468     *
     1469     * @param  TValue|\Closure(TArgs): TValue  $value
     1470     * @param  TArgs  ...$args
     1471     * @return TValue
     1472     */
     1473    private static function value( $value, ...$args ) {
     1474        return $value instanceof Closure ? $value( ...$args ) : $value;
     1475    }
    14621476}
  • solid-performance/trunk/vendor/vendor-prefixed/stellarwp/telemetry/src/Telemetry/Opt_In/Opt_In_Template.php

    r3239731 r3240351  
    136136        /**
    137137         * Filters the name of the option stored in the options table.
     138         * This filter can be used to apply a generic option name.
     139         * Usage of this filter is highly discouraged.
     140         *
     141         * @since 2.3
     142         *
     143         * @param string $option_name
     144         * @param string $stellar_slug The current stellar slug.
     145         */
     146        $option_name = apply_filters(
     147            'stellarwp/telemetry/show_optin_option_name',
     148            $option_name,
     149            $stellar_slug
     150        );
     151
     152        /**
     153         * Filters the name of the option stored in the options table.
    138154         *
    139155         * @since 1.0.0
Note: See TracChangeset for help on using the changeset viewer.