class-akismet-admin-chrome.php
3 weeks ago
class-jetpack-about-page.php
2 months ago
class-jetpack-ai-page.php
2 months ago
class-jetpack-redux-state-helper.php
3 weeks ago
class.jetpack-admin-page.php
6 days ago
class.jetpack-landing-page.php
2 years ago
class.jetpack-react-page.php
7 months ago
class.jetpack-settings-page.php
6 days ago
class.jetpack-settings-page.php
240 lines
| 1 | <?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
| 2 | |
| 3 | use Automattic\Jetpack\Admin_UI\Admin_Menu; |
| 4 | use Automattic\Jetpack\Assets; |
| 5 | use Automattic\Jetpack\Redirect; |
| 6 | use Automattic\Jetpack\Status; |
| 7 | use Automattic\Jetpack\Tracking; |
| 8 | |
| 9 | if ( ! defined( 'ABSPATH' ) ) { |
| 10 | exit( 0 ); |
| 11 | } |
| 12 | |
| 13 | require_once __DIR__ . '/class.jetpack-admin-page.php'; |
| 14 | require_once JETPACK__PLUGIN_DIR . 'class.jetpack-modules-list-table.php'; |
| 15 | |
| 16 | /** |
| 17 | * Builds the settings page and its menu |
| 18 | */ |
| 19 | class Jetpack_Settings_Page extends Jetpack_Admin_Page { |
| 20 | |
| 21 | /** |
| 22 | * Show the settings page only when Jetpack is connected or in dev mode. |
| 23 | * |
| 24 | * @var boolean |
| 25 | */ |
| 26 | protected $dont_show_if_not_active = true; |
| 27 | |
| 28 | /** |
| 29 | * Add page action. |
| 30 | * |
| 31 | * @param string $hook Hook of current page. |
| 32 | * @return void |
| 33 | */ |
| 34 | public function add_page_actions( $hook ) {} //phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
| 35 | |
| 36 | /** |
| 37 | * Adds the Settings sub menu. |
| 38 | */ |
| 39 | public function get_page_hook() { |
| 40 | /* |
| 41 | * In Offline Mode the cloud dashboard and My Jetpack don't initialize, so |
| 42 | * surface the Modules page as a visible, first-position item under the |
| 43 | * Jetpack top-level menu. This makes the top-level "Jetpack" menu land on |
| 44 | * Modules (instead of the first cloud page, e.g. AI) while leaving the |
| 45 | * "Settings" item free to point at the real settings dashboard. |
| 46 | */ |
| 47 | if ( ( new Status() )->is_offline_mode() ) { |
| 48 | return Admin_Menu::add_menu( |
| 49 | __( 'Jetpack Settings', 'jetpack' ), |
| 50 | __( 'Modules', 'jetpack' ), |
| 51 | 'jetpack_manage_modules', |
| 52 | 'jetpack_modules', |
| 53 | array( $this, 'render' ), |
| 54 | 1 |
| 55 | ); |
| 56 | } |
| 57 | |
| 58 | return add_submenu_page( |
| 59 | '', |
| 60 | __( 'Jetpack Settings', 'jetpack' ), |
| 61 | __( 'Settings', 'jetpack' ), |
| 62 | 'jetpack_manage_modules', |
| 63 | 'jetpack_modules', |
| 64 | array( $this, 'render' ) |
| 65 | ); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Renders the module list table where you can use bulk action or row |
| 70 | * actions to activate/deactivate and configure modules |
| 71 | */ |
| 72 | public function page_render() { |
| 73 | $list_table = new Jetpack_Modules_List_Table(); |
| 74 | |
| 75 | // Currently selected product group filter (used to highlight the active View button). |
| 76 | // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is view logic. |
| 77 | $current_group = isset( $_GET['product_group'] ) ? sanitize_text_field( wp_unslash( $_GET['product_group'] ) ) : ''; |
| 78 | |
| 79 | $is_offline_mode = ( new Status() )->is_offline_mode(); |
| 80 | // Currently selected offline-availability filter (only meaningful in Offline Mode). |
| 81 | // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is view logic. |
| 82 | $current_availability = isset( $_GET['offline_available'] ) ? sanitize_text_field( wp_unslash( $_GET['offline_available'] ) ) : ''; |
| 83 | |
| 84 | // We have static.html so let's continue trying to fetch the others. |
| 85 | $noscript_notice = @file_get_contents( JETPACK__PLUGIN_DIR . '_inc/build/static-noscript-notice.html' ); //phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged, WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents, Not fetching a remote file. |
| 86 | $rest_api_notice = @file_get_contents( JETPACK__PLUGIN_DIR . '_inc/build/static-version-notice.html' ); //phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged, WordPress.WP.AlternativeFunctions.file_get_contents_file_get_contents, Not fetching a remote file. |
| 87 | |
| 88 | $noscript_notice = str_replace( |
| 89 | '#HEADER_TEXT#', |
| 90 | esc_html__( 'You have JavaScript disabled', 'jetpack' ), |
| 91 | $noscript_notice |
| 92 | ); |
| 93 | $noscript_notice = str_replace( |
| 94 | '#TEXT#', |
| 95 | esc_html__( "Turn on JavaScript to unlock Jetpack's full potential!", 'jetpack' ), |
| 96 | $noscript_notice |
| 97 | ); |
| 98 | |
| 99 | $rest_api_notice = str_replace( |
| 100 | '#HEADER_TEXT#', |
| 101 | esc_html( __( 'WordPress REST API is disabled', 'jetpack' ) ), |
| 102 | $rest_api_notice |
| 103 | ); |
| 104 | $rest_api_notice = str_replace( |
| 105 | '#TEXT#', |
| 106 | esc_html( __( "Enable WordPress REST API to unlock Jetpack's full potential!", 'jetpack' ) ), |
| 107 | $rest_api_notice |
| 108 | ); |
| 109 | |
| 110 | if ( ! $this->is_rest_api_enabled() ) { |
| 111 | echo $rest_api_notice; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 112 | } |
| 113 | echo $noscript_notice; //phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 114 | ?> |
| 115 | |
| 116 | <div class="jetpack-module-list"> |
| 117 | <?php if ( $is_offline_mode ) : ?> |
| 118 | <div class="wrap"> |
| 119 | <div class="jetpack-offline-notice"> |
| 120 | <p class="jetpack-offline-notice__title"><?php esc_html_e( "You're working in Offline Mode", 'jetpack' ); ?></p> |
| 121 | <p class="jetpack-offline-notice__text"> |
| 122 | <?php esc_html_e( 'Jetpack is running in Offline Mode, so features that need a connection to WordPress.com are paused for now — this is completely normal for local and development sites. Go ahead and activate or configure any of the modules below that work offline.', 'jetpack' ); ?> |
| 123 | <a href="<?php echo esc_url( Redirect::get_url( 'jetpack-support-development-mode' ) ); ?>" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'Learn more about Offline Mode.', 'jetpack' ); ?></a> |
| 124 | </p> |
| 125 | </div> |
| 126 | </div> |
| 127 | <?php endif; ?> |
| 128 | <div class="wrap"> |
| 129 | <div class="manage-left"> |
| 130 | <div class="jetpack-modules-card"> |
| 131 | <div class="jetpack-modules-card__bulk"> |
| 132 | <label class="jetpack-modules-card__checkall"> |
| 133 | <input type="checkbox" class="checkall" /> |
| 134 | <span><?php esc_html_e( 'Select all', 'jetpack' ); ?></span> |
| 135 | </label> |
| 136 | <?php $list_table->unprotected_display_tablenav( 'top' ); ?> |
| 137 | <span class="filter-search"> |
| 138 | <button type="button" class="button"><?php esc_html_e( 'Filter', 'jetpack' ); ?></button> |
| 139 | </span> |
| 140 | </div> |
| 141 | <form class="jetpack-modules-list-table-form" onsubmit="return false;"> |
| 142 | <table class="<?php echo esc_attr( implode( ' ', $list_table->get_table_classes() ) ); ?> jetpack-modules"> |
| 143 | <tbody id="the-list"> |
| 144 | <?php $list_table->display_rows_or_placeholder(); ?> |
| 145 | </tbody> |
| 146 | </table> |
| 147 | </form> |
| 148 | </div> |
| 149 | </div> |
| 150 | <div class="manage-right"> |
| 151 | <div class="bumper"> |
| 152 | <form class="navbar-form" role="search"> |
| 153 | <input type="hidden" name="page" value="jetpack_modules" /> |
| 154 | <?php $list_table->search_box( __( 'Search modules…', 'jetpack' ), 'srch-term' ); ?> |
| 155 | <?php if ( $is_offline_mode ) : ?> |
| 156 | <p><?php esc_html_e( 'Available in offline mode', 'jetpack' ); ?></p> |
| 157 | <span class="dops-button-group button-group availability-filter"> |
| 158 | <button type="button" class="dops-button is-compact button |
| 159 | <?php echo 'all' === $current_availability ? 'active' : ''; ?> |
| 160 | " data-availability="all"><?php esc_html_e( 'All', 'jetpack' ); ?></button> |
| 161 | <button type="button" class="dops-button button |
| 162 | <?php echo 'all' === $current_availability ? '' : 'active'; ?> |
| 163 | " data-availability="hide-unavailable"><?php esc_html_e( 'Hide unavailable', 'jetpack' ); ?></button> |
| 164 | </span> |
| 165 | <?php endif; ?> |
| 166 | <p><?php esc_html_e( 'State', 'jetpack' ); ?></p> |
| 167 | <span class="dops-button-group button-group module-filter filter-state"> |
| 168 | <button type="button" class="dops-button is-compact button |
| 169 | <?php // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is view logic. |
| 170 | if ( empty( $_GET['activated'] ) ) { |
| 171 | echo 'active'; |
| 172 | } |
| 173 | ?> |
| 174 | "> |
| 175 | <?php esc_html_e( 'All', 'jetpack' ); ?></button> |
| 176 | <button type="button" class="dops-button button |
| 177 | <?php // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is view logic. |
| 178 | if ( ! empty( $_GET['activated'] ) && 'true' === $_GET['activated'] ) { |
| 179 | echo 'active'; |
| 180 | } |
| 181 | ?> |
| 182 | " data-filter-by="activated" data-filter-value="true"><?php esc_html_e( 'Active', 'jetpack' ); ?></button> |
| 183 | <button type="button" class="dops-button button |
| 184 | <?php // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- This is view logic. |
| 185 | if ( ! empty( $_GET['activated'] ) && 'false' === $_GET['activated'] ) { |
| 186 | echo 'active'; |
| 187 | } |
| 188 | ?> |
| 189 | " data-filter-by="activated" data-filter-value="false"><?php esc_html_e( 'Inactive', 'jetpack' ); ?></button> |
| 190 | </span> |
| 191 | <p><?php esc_html_e( 'Purpose', 'jetpack' ); ?></p> |
| 192 | <ul class="purpose-filter"> |
| 193 | <li class="all<?php echo '' === $current_group ? ' current' : ''; ?>"><a href="#" data-group=""><?php esc_html_e( 'All', 'jetpack' ); ?></a> <span class="count"></span></li> |
| 194 | <?php |
| 195 | foreach ( Jetpack_Modules_List_Table::PRODUCT_GROUP_ORDER as $group_slug ) { |
| 196 | printf( |
| 197 | '<li class="%1$s%2$s"><a href="#" data-group="%1$s">%3$s</a> <span class="count"></span></li>', |
| 198 | esc_attr( $group_slug ), |
| 199 | $group_slug === $current_group ? ' current' : '', |
| 200 | esc_html( Jetpack_Modules_List_Table::get_product_group_name( $group_slug ) ) |
| 201 | ); |
| 202 | } |
| 203 | ?> |
| 204 | </ul> |
| 205 | <p><?php esc_html_e( 'Tags', 'jetpack' ); ?></p> |
| 206 | <?php $list_table->views(); ?> |
| 207 | </form> |
| 208 | </div> |
| 209 | </div> |
| 210 | </div> |
| 211 | </div><!-- /.jetpack-module-list --> |
| 212 | <?php |
| 213 | |
| 214 | $tracking = new Tracking(); |
| 215 | $tracking->record_user_event( 'wpa_page_view', array( 'path' => 'old_settings' ) ); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Load styles for static page. |
| 220 | * |
| 221 | * @since 4.3.0 |
| 222 | */ |
| 223 | public function additional_styles() { |
| 224 | Jetpack_Admin_Page::load_wrapper_styles(); |
| 225 | } |
| 226 | |
| 227 | /** |
| 228 | * Javascript logic specific to the list table |
| 229 | */ |
| 230 | public function page_admin_scripts() { |
| 231 | wp_enqueue_script( |
| 232 | 'jetpack-admin-js', |
| 233 | Assets::get_file_url_for_environment( '_inc/build/jetpack-admin.min.js', '_inc/jetpack-admin.js' ), |
| 234 | array( 'jquery' ), |
| 235 | JETPACK__VERSION, |
| 236 | true |
| 237 | ); |
| 238 | } |
| 239 | } |
| 240 |