field-bulk-edit.php
9 months ago
field-meta-box-news.php
9 months ago
field-meta-box.php
7 months ago
field-news-categories.php
9 months ago
field-news-hierarchical.php
7 months ago
field-news-keywords.php
7 months ago
field-news-name.php
10 months ago
field-news-notifier.php
7 months ago
field-news-post-type.php
9 months ago
field-news-stocktickers.php
7 months ago
field-quick-edit.php
1 year ago
field-robots.php
1 year ago
field-sitemap-author-settings.php
7 months ago
field-sitemap-authors.php
9 months ago
field-sitemap-custom.php
1 year ago
field-sitemap-disable.php
1 year ago
field-sitemap-notifier.php
3 months ago
field-sitemap-post-type-settings.php
3 months ago
field-sitemap-post-types-limit.php
1 year ago
field-sitemap-post-types.php
9 months ago
field-sitemap-server.php
7 months ago
field-sitemap-slug.php
9 months ago
field-sitemap-taxonomies.php
9 months ago
field-sitemap-taxonomy-settings.php
7 months ago
field-sitemap-urls.php
1 year ago
field-sitemaps.php
1 year ago
help-tab-advanced.php
7 months ago
help-tab-authors.php
7 months ago
help-tab-news-categories.php
1 year ago
help-tab-news-hierarchical.php
9 months ago
help-tab-news-keywords.php
1 year ago
help-tab-news-name.php
1 year ago
help-tab-news-notifier.php
7 months ago
help-tab-news-post-types.php
1 year ago
help-tab-news-sidebar.php
1 year ago
help-tab-news-stocktickers.php
1 year ago
help-tab-news.php
1 year ago
help-tab-post-types-general.php
1 year ago
help-tab-post-types.php
7 months ago
help-tab-robots.php
1 year ago
help-tab-sidebar.php
1 year ago
help-tab-sitemaps.php
1 year ago
help-tab-support.php
7 months ago
help-tab-taxonomies.php
7 months ago
notice-xmlsf-advanced-news.php
1 year ago
notice-xmlsf-advanced.php
1 year ago
page-sitemap-news.php
7 months ago
page-sitemap.php
9 months ago
section-advanced-compat-message.php
10 months ago
section-advanced-intro.php
1 year ago
section-advanced-news-compat-message.php
10 months ago
section-bwt-data.php
3 months ago
section-bwt-oauth-intro.php
7 months ago
section-bwt-oauth-stage-1.php
7 months ago
section-bwt-oauth-stage-2.php
7 months ago
section-gsc-data-news.php
4 months ago
section-gsc-data.php
3 months ago
section-gsc-oauth-intro.php
7 months ago
section-gsc-oauth-stage-1-2.php
3 months ago
section-gsc-oauth-stage-3.php
7 months ago
section-ping-log.php
4 months ago
sidebar-advanced-plug.php
3 months ago
sidebar-bwt-connect.php
7 months ago
sidebar-contribute.php
10 months ago
sidebar-gsc-connect.php
7 months ago
sidebar-help.php
7 months ago
sidebar-links.php
7 months ago
sidebar-news-advanced-plug.php
7 months ago
sidebar-news-links.php
7 months ago
sidebar-news-tools.php
9 months ago
sidebar-priority-support.php
9 months ago
sidebar-tools.php
9 months ago
sidebar-gsc-connect.php
43 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Sidebar: GSC Connect |
| 4 | * |
| 5 | * @package XML Sitemap & Google News |
| 6 | */ |
| 7 | |
| 8 | ?> |
| 9 | <h3> |
| 10 | <span class="dashicons dashicons-google"></span> |
| 11 | <?php esc_html_e( 'Google Search Console', 'xml-sitemap-feed' ); ?> |
| 12 | </h3> |
| 13 | <?php |
| 14 | if ( ! \XMLSF\GSC_Connect::is_connected() ) { |
| 15 | // Initiate button. |
| 16 | ?> |
| 17 | <p> |
| 18 | <?php printf( /* translators: %s: Google Search Console */ esc_html_x( 'Connect to %s for sitemap data retrieval and sitemap submissions.', 'Google Search Console connection', 'xml-sitemap-feed' ), esc_html__( 'Google Search Console', 'xml-sitemap-feed' ) ); ?> |
| 19 | </p> |
| 20 | <p> |
| 21 | <a href="<?php echo esc_url( $settings_page_url ); ?>" class="button button-primary"> |
| 22 | <?php esc_html_e( 'Connect', 'xml-sitemap-feed' ); ?> |
| 23 | </a> |
| 24 | </p> |
| 25 | <?php |
| 26 | return; |
| 27 | } |
| 28 | |
| 29 | // Submit and Disconnect buttons. |
| 30 | ?> |
| 31 | <form action="" method="post"> |
| 32 | <?php wp_nonce_field( XMLSF_BASENAME . '-gsc', '_xmlsf_gsc_nonce' ); ?> |
| 33 | <p> |
| 34 | <?php submit_button( sprintf( /* translators: %s: Google News Sitemap or XML Sitemap Index depending on admin page */ __( 'Submit your %s now', 'xml-sitemap-feed' ), $sitemap_desc ), 'primary', 'xmlsf_gsc_manual_submit', false ); ?> |
| 35 | </p> |
| 36 | <p> |
| 37 | <?php esc_html_e( 'Your site is connected to Google Search Console. You can disconnect and reconnect if you encounter submission errors or wish to reset or transfer site connection ownership.', 'xml-sitemap-feed' ); ?> |
| 38 | </p> |
| 39 | <p> |
| 40 | <input type="submit" name="xmlsf_gsc_disconnect" class="button button-small button-link-delete" value="<?php esc_attr_e( 'Disconnect', 'xml-sitemap-feed' ); ?>" onclick="javascript:return confirm( '<?php echo esc_js( __( 'You are about to DISCONNECT this site from Google Search Console.', 'xml-sitemap-feed' ) ); ?>\n\n<?php echo esc_js( translate( 'Are you sure you want to do this?' ) ); // phpcs:ignore WordPress.WP.I18n.LowLevelTranslationFunction ?>' )" /> |
| 41 | </p> |
| 42 | </form> |
| 43 |