mock_masterbar_activation(); } if ( $this->is_page_gutenberg() ) { add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_for_gutenberg' ), 100 ); return; } add_action( 'admin_init', array( $this, 'check_page' ) ); add_action( 'admin_menu', array( $this, 'remove_core_menus' ), 100 ); add_action( 'admin_menu', array( $this, 'add_plugin_menus' ), 101 ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 100 ); add_action( 'in_admin_header', array( $this, 'insert_sidebar_html' ) ); add_action( 'wp_before_admin_bar_render', array( $this, 'modify_masterbar' ), 100000 ); add_filter( 'get_user_option_admin_color', array( $this, 'admin_color_override' ) ); add_action( 'manage_plugins_columns', array( $this, 'manage_plugins_columns_header' ) ); add_action( 'manage_plugins_custom_column', array( $this, 'manage_plugins_custom_column' ), 10, 2 ); add_filter( 'bulk_actions-plugins', array( $this, 'bulk_actions_plugins' ) ); if ( 'plugins.php' === basename( $_SERVER['PHP_SELF'] ) ) { add_action( 'admin_notices', array( $this, 'plugins_admin_notices' ) ); } } // Make this always available -- in case calypsoify gets toggled off. add_action( 'wp_ajax_jetpack_toggle_autoupdate', array( $this, 'jetpack_toggle_autoupdate' ) ); add_filter( 'handle_bulk_actions-plugins', array( $this, 'handle_bulk_actions_plugins' ), 10, 3 ); } public function manage_plugins_columns_header( $columns ) { if ( current_user_can( 'jetpack_manage_autoupdates' ) ) { $columns['autoupdate'] = __( 'Automatic Update', 'jetpack' ); } return $columns; } public function manage_plugins_custom_column( $column_name, $slug ) { static $repo_plugins = array(); if ( ! current_user_can( 'jetpack_manage_autoupdates' ) ) { return; } if ( empty( $repo_plugins ) ) { $repo_plugins = self::get_dotorg_repo_plugins(); } $autoupdating_plugins = Jetpack_Options::get_option( 'autoupdate_plugins', array() ); // $autoupdating_plugins_translations = Jetpack_Options::get_option( 'autoupdate_plugins_translations', array() ); if ( 'autoupdate' === $column_name ) { if ( ! in_array( $slug, $repo_plugins ) ) { return; } // Shamelessly swiped from https://github.com/Automattic/wp-calypso/blob/59bdfeeb97eda4266ad39410cb0a074d2c88dbc8/client/components/forms/form-toggle ?> readonly data-slug="" /> response ), array_keys( $plugins->no_update ) ); } public function bulk_actions_plugins( $bulk_actions ) { $bulk_actions['jetpack_enable_plugin_autoupdates'] = __( 'Enable Automatic Updates', 'jetpack' ); $bulk_actions['jetpack_disable_plugin_autoupdates'] = __( 'Disable Automatic Updates', 'jetpack' ); return $bulk_actions; } public function handle_bulk_actions_plugins( $redirect_to, $action, $slugs ) { $redirect_to = remove_query_arg( array( 'jetpack_enable_plugin_autoupdates', 'jetpack_disable_plugin_autoupdates' ), $redirect_to ); if ( in_array( $action, array( 'jetpack_enable_plugin_autoupdates', 'jetpack_disable_plugin_autoupdates' ) ) ) { $list = Jetpack_Options::get_option( 'autoupdate_plugins', array() ); $initial_qty = sizeof( $list ); if ( 'jetpack_enable_plugin_autoupdates' === $action ) { $list = array_unique( array_merge( $list, $slugs ) ); } elseif ( 'jetpack_disable_plugin_autoupdates' === $action ) { $list = array_diff( $list, $slugs ); } Jetpack_Options::update_option( 'autoupdate_plugins', $list ); $redirect_to = add_query_arg( $action, absint( sizeof( $list ) - $initial_qty ), $redirect_to ); } return $redirect_to; } public function plugins_admin_notices() { if ( ! empty( $_GET['jetpack_enable_plugin_autoupdates'] ) ) { $qty = (int) $_GET['jetpack_enable_plugin_autoupdates']; printf( '

' . _n( 'Enabled automatic updates on %d plugin.', 'Enabled automatic updates on %d plugins.', $qty, 'jetpack' ) . '

', $qty ); } elseif ( ! empty( $_GET['jetpack_disable_plugin_autoupdates'] ) ) { $qty = (int) $_GET['jetpack_disable_plugin_autoupdates']; printf( '

' . _n( 'Disabled automatic updates on %d plugin.', 'Disabled automatic updates on %d plugins.', $qty, 'jetpack' ) . '

', $qty ); } } public function jetpack_toggle_autoupdate() { if ( ! current_user_can( 'jetpack_manage_autoupdates' ) ) { wp_send_json_error(); return; } $type = $_POST['type']; $slug = $_POST['slug']; $active = 'false' !== $_POST['active']; check_ajax_referer( "jetpack_toggle_autoupdate-{$type}" ); if ( ! in_array( $type, array( 'plugins', 'plugins_translations' ) ) ) { wp_send_json_error(); return; } $jetpack_option_name = "autoupdate_{$type}"; $list = Jetpack_Options::get_option( $jetpack_option_name, array() ); if ( $active ) { $list = array_unique( array_merge( $list, (array) $slug ) ); } else { $list = array_diff( $list, (array) $slug ); } Jetpack_Options::update_option( $jetpack_option_name, $list ); wp_send_json_success( $list ); } public function admin_color_override( $color ) { return 'fresh'; } public function mock_masterbar_activation() { include_once JETPACK__PLUGIN_DIR . 'modules/masterbar/masterbar.php'; new A8C_WPCOM_Masterbar; } public function remove_core_menus() { remove_menu_page( 'index.php' ); remove_menu_page( 'jetpack' ); remove_menu_page( 'edit.php' ); remove_menu_page( 'edit.php?post_type=feedback' ); remove_menu_page( 'upload.php' ); remove_menu_page( 'edit.php?post_type=page' ); remove_menu_page( 'edit-comments.php' ); remove_menu_page( 'themes.php' ); remove_menu_page( 'plugins.php' ); remove_menu_page( 'users.php' ); remove_menu_page( 'tools.php' ); remove_menu_page( 'link-manager.php' ); // Core settings pages remove_submenu_page( 'options-general.php', 'options-general.php' ); remove_submenu_page( 'options-general.php', 'options-writing.php' ); remove_submenu_page( 'options-general.php', 'options-reading.php' ); remove_submenu_page( 'options-general.php', 'options-discussion.php' ); remove_submenu_page( 'options-general.php', 'options-media.php' ); remove_submenu_page( 'options-general.php', 'options-permalink.php' ); remove_submenu_page( 'options-general.php', 'privacy.php' ); remove_submenu_page( 'options-general.php', 'sharing' ); } public function add_plugin_menus() { global $menu, $submenu; add_menu_page( __( 'Manage Plugins', 'jetpack' ), __( 'Manage Plugins', 'jetpack' ), 'activate_plugins', 'plugins.php', '', $this->installed_plugins_icon(), 1 ); // // Count the settings page submenus, if it's zero then don't show this. if ( empty( $submenu['options-general.php'] ) ) { remove_menu_page( 'options-general.php' ); } else { // Rename and make sure the plugin settings menu is always last. // Sneaky plugins seem to override this otherwise. // Settings is always key 80. $menu[80][0] = __( 'Plugin Settings', 'jetpack' ); $menu[ max( array_keys( $menu ) ) + 1 ] = $menu[80]; unset( $menu[80] ); } } public function enqueue() { wp_enqueue_style( 'calypsoify_wpadminmods_css', plugin_dir_url( __FILE__ ) . 'style.min.css', false, JETPACK__VERSION ); wp_style_add_data( 'calypsoify_wpadminmods_css', 'rtl', 'replace' ); wp_style_add_data( 'calypsoify_wpadminmods_css', 'suffix', '.min' ); wp_enqueue_script( 'calypsoify_wpadminmods_js', plugin_dir_url( __FILE__ ) . 'mods.js', false, JETPACK__VERSION ); wp_localize_script( 'calypsoify_wpadminmods_js', 'CalypsoifyOpts', array( 'nonces' => array( 'autoupdate_plugins' => wp_create_nonce( 'jetpack_toggle_autoupdate-plugins' ), 'autoupdate_plugins_translations' => wp_create_nonce( 'jetpack_toggle_autoupdate-plugins_translations' ), ) ) ); } public function enqueue_for_gutenberg() { wp_enqueue_style( 'calypsoify_wpadminmods_css', plugin_dir_url( __FILE__ ) . 'style-gutenberg.min.css', false, JETPACK__VERSION ); wp_style_add_data( 'calypsoify_wpadminmods_css', 'rtl', 'replace' ); wp_style_add_data( 'calypsoify_wpadminmods_css', 'suffix', '.min' ); wp_enqueue_script( 'calypsoify_wpadminmods_js', plugin_dir_url( __FILE__ ) . 'mods-gutenberg.js', false, JETPACK__VERSION ); wp_localize_script( 'calypsoify_wpadminmods_js', 'calypsoifyGutenberg', array( 'closeUrl' => $this->get_close_gutenberg_url(), ) ); } public function insert_sidebar_html() { ?> get_node( 'blog' ); $my_sites_node->href = 'https://wordpress.com/stats/day/' . Jetpack::build_raw_urls( home_url() ); $wp_admin_bar->add_node( $my_sites_node ); $reader_node = (object) $wp_admin_bar->get_node( 'newdash' ); $reader_node->href = 'https://wordpress.com'; $wp_admin_bar->add_node( $reader_node ); $me_node = (object) $wp_admin_bar->get_node( 'my-account' ); $me_node->href = 'https://wordpress.com/me'; $wp_admin_bar->add_node( $me_node ); } private function installed_plugins_icon() { $svg = ''; return 'data:image/svg+xml;base64,' . base64_encode( $svg ); } public function get_close_gutenberg_url() { $screen = get_current_screen(); // E.g. `posts`, `pages`, or `types/some_custom_post_type` $post_type = ( 'post' === $screen->post_type || 'page' === $screen->post_type ) ? $screen->post_type . 's' : 'types/' . $screen->post_type; return 'https://wordpress.com/' . $post_type . '/' . Jetpack::build_raw_urls( home_url() ); } public function check_param() { if ( isset( $_GET['calypsoify'] ) ) { if ( 1 == (int) $_GET['calypsoify'] ) { update_user_meta( get_current_user_id(), 'calypsoify', 1 ); } else { update_user_meta( get_current_user_id(), 'calypsoify', 0 ); } $page = remove_query_arg( 'calypsoify', wp_basename( $_SERVER['REQUEST_URI'] ) ); wp_safe_redirect( admin_url( $page ) ); } } public function check_page() { // If the user hits plain /wp-admin/ then disable Calypso styles. $page = wp_basename( esc_url( $_SERVER['REQUEST_URI'] ) ); if ( false !== strpos( 'index.php', $page ) || false !== strpos( 'wp-admin', $page ) ) { update_user_meta( get_current_user_id(), 'calypsoify', 0 ); wp_safe_redirect( admin_url() ); die; } } /** * Return whether a post type should display the Gutenberg/block editor. * * @since 6.7.0 */ public function is_post_type_gutenberg( $post_type ) { // @TODO: Remove function check once 5.0 is the minimum supported WP version. if ( function_exists( 'use_block_editor_for_post_type' ) ) { return use_block_editor_for_post_type( $post_type ); } else { // We use the filter introduced in WordPress 5.0 to be backwards compatible. /** This filter is already documented in core/wp-admin/includes/post.php */ return apply_filters( 'use_block_editor_for_post_type', true, $post_type ); } } public function is_page_gutenberg() { if ( ! Jetpack_Gutenberg::is_gutenberg_available() ) { return false; } $page = wp_basename( esc_url( $_SERVER['REQUEST_URI'] ) ); if ( false !== strpos( $page, 'post-new.php' ) && empty ( $_GET['post_type'] ) ) { return true; } if ( false !== strpos( $page, 'post-new.php' ) && isset( $_GET['post_type'] ) && $this->is_post_type_gutenberg( $_GET['post_type'] ) ) { return true; } if ( false !== strpos( $page, 'post.php' ) ) { $post = get_post( $_GET['post'] ); if ( isset( $post ) && isset( $post->post_type ) && $this->is_post_type_gutenberg( $post->post_type ) ) { return true; } } if ( false !== strpos( $page, 'revision.php' ) ) { $post = get_post( $_GET['revision'] ); $parent = get_post( $post->post_parent ); if ( isset( $parent ) && isset( $parent->post_type ) && $this->is_post_type_gutenberg( $parent->post_type ) ) { return true; } } return false; } } $Jetpack_Calypsoify = Jetpack_Calypsoify::getInstance();