Privacy: Remove reinstated wp-admin/options-privacy.php
from $_old_files
.
Fix WPCS violations in [45448]. See #43895. git-svn-id: https://develop.svn.wordpress.org/trunk@45453 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
d670b91335
commit
2208412015
@ -22,22 +22,22 @@
|
|||||||
function _get_list_table( $class, $args = array() ) {
|
function _get_list_table( $class, $args = array() ) {
|
||||||
$core_classes = array(
|
$core_classes = array(
|
||||||
//Site Admin
|
//Site Admin
|
||||||
'WP_Posts_List_Table' => 'posts',
|
'WP_Posts_List_Table' => 'posts',
|
||||||
'WP_Media_List_Table' => 'media',
|
'WP_Media_List_Table' => 'media',
|
||||||
'WP_Terms_List_Table' => 'terms',
|
'WP_Terms_List_Table' => 'terms',
|
||||||
'WP_Users_List_Table' => 'users',
|
'WP_Users_List_Table' => 'users',
|
||||||
'WP_Comments_List_Table' => 'comments',
|
'WP_Comments_List_Table' => 'comments',
|
||||||
'WP_Post_Comments_List_Table' => array( 'comments', 'post-comments' ),
|
'WP_Post_Comments_List_Table' => array( 'comments', 'post-comments' ),
|
||||||
'WP_Links_List_Table' => 'links',
|
'WP_Links_List_Table' => 'links',
|
||||||
'WP_Plugin_Install_List_Table' => 'plugin-install',
|
'WP_Plugin_Install_List_Table' => 'plugin-install',
|
||||||
'WP_Themes_List_Table' => 'themes',
|
'WP_Themes_List_Table' => 'themes',
|
||||||
'WP_Theme_Install_List_Table' => array( 'themes', 'theme-install' ),
|
'WP_Theme_Install_List_Table' => array( 'themes', 'theme-install' ),
|
||||||
'WP_Plugins_List_Table' => 'plugins',
|
'WP_Plugins_List_Table' => 'plugins',
|
||||||
|
|
||||||
// Network Admin
|
// Network Admin
|
||||||
'WP_MS_Sites_List_Table' => 'ms-sites',
|
'WP_MS_Sites_List_Table' => 'ms-sites',
|
||||||
'WP_MS_Users_List_Table' => 'ms-users',
|
'WP_MS_Users_List_Table' => 'ms-users',
|
||||||
'WP_MS_Themes_List_Table' => 'ms-themes',
|
'WP_MS_Themes_List_Table' => 'ms-themes',
|
||||||
|
|
||||||
// Privacy requests tables
|
// Privacy requests tables
|
||||||
'WP_Privacy_Data_Export_Requests_List_Table' => 'privacy-data-export-requests',
|
'WP_Privacy_Data_Export_Requests_List_Table' => 'privacy-data-export-requests',
|
||||||
|
@ -536,7 +536,6 @@ $_old_files = array(
|
|||||||
'wp-admin/images/screenshots/twitter-embed-1.png',
|
'wp-admin/images/screenshots/twitter-embed-1.png',
|
||||||
'wp-admin/images/screenshots/twitter-embed-2.png',
|
'wp-admin/images/screenshots/twitter-embed-2.png',
|
||||||
'wp-admin/js/utils.js',
|
'wp-admin/js/utils.js',
|
||||||
'wp-admin/options-privacy.php',
|
|
||||||
'wp-app.php',
|
'wp-app.php',
|
||||||
'wp-includes/class-wp-atom-server.php',
|
'wp-includes/class-wp-atom-server.php',
|
||||||
'wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css',
|
'wp-includes/js/tinymce/themes/advanced/skins/wp_theme/ui.css',
|
||||||
|
@ -145,11 +145,9 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
);
|
);
|
||||||
|
|
||||||
$view_href = get_permalink( $privacy_policy_page_id );
|
$view_href = get_permalink( $privacy_policy_page_id );
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<p class="tools-privacy-edit"><strong>
|
<p class="tools-privacy-edit"><strong>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) {
|
if ( 'publish' === get_post_status( $privacy_policy_page_id ) ) {
|
||||||
printf(
|
printf(
|
||||||
/* translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy Policy page */
|
/* translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy Policy page */
|
||||||
@ -165,7 +163,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
esc_url( $view_href )
|
esc_url( $view_href )
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</strong></p>
|
</strong></p>
|
||||||
<?php
|
<?php
|
||||||
@ -173,7 +170,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
?>
|
?>
|
||||||
<p>
|
<p>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
printf(
|
printf(
|
||||||
/* translators: 1: Privacy Policy guide URL, 2: additional link attributes, 3: accessibility text */
|
/* translators: 1: Privacy Policy guide URL, 2: additional link attributes, 3: accessibility text */
|
||||||
__( 'Need help putting together your new Privacy Policy page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ),
|
__( 'Need help putting together your new Privacy Policy page? <a href="%1$s" %2$s>Check out our guide%3$s</a> for recommendations on what content to include, along with policies suggested by your plugins and theme.' ),
|
||||||
@ -181,7 +177,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
'',
|
'',
|
||||||
''
|
''
|
||||||
);
|
);
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
@ -201,7 +196,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
</th>
|
</th>
|
||||||
<td>
|
<td>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$has_pages = (bool) get_posts(
|
$has_pages = (bool) get_posts(
|
||||||
array(
|
array(
|
||||||
'post_type' => 'page',
|
'post_type' => 'page',
|
||||||
@ -218,7 +212,6 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
<form method="post" action="">
|
<form method="post" action="">
|
||||||
<input type="hidden" name="action" value="set-privacy-page" />
|
<input type="hidden" name="action" value="set-privacy-page" />
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
wp_dropdown_pages(
|
wp_dropdown_pages(
|
||||||
array(
|
array(
|
||||||
'name' => 'page_for_privacy_policy',
|
'name' => 'page_for_privacy_policy',
|
||||||
|
@ -60,25 +60,25 @@ require_once( ABSPATH . 'wp-admin/admin-header.php' );
|
|||||||
<h1><?php echo esc_html( $title ); ?></h1>
|
<h1><?php echo esc_html( $title ); ?></h1>
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if ( current_user_can( 'import' ) ) :
|
if ( current_user_can( 'import' ) ) :
|
||||||
$cats = get_taxonomy( 'category' );
|
$cats = get_taxonomy( 'category' );
|
||||||
$tags = get_taxonomy( 'post_tag' );
|
$tags = get_taxonomy( 'post_tag' );
|
||||||
if ( current_user_can( $cats->cap->manage_terms ) || current_user_can( $tags->cap->manage_terms ) ) :
|
if ( current_user_can( $cats->cap->manage_terms ) || current_user_can( $tags->cap->manage_terms ) ) :
|
||||||
?>
|
?>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<h2 class="title"><?php _e( 'Categories and Tags Converter' ); ?></h2>
|
<h2 class="title"><?php _e( 'Categories and Tags Converter' ); ?></h2>
|
||||||
<p><?php printf( __( 'If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.' ), 'import.php' ); ?></p>
|
<p><?php printf( __( 'If you want to convert your categories to tags (or vice versa), use the <a href="%s">Categories and Tags Converter</a> available from the Import screen.' ), 'import.php' ); ?></p>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
endif;
|
|
||||||
endif;
|
endif;
|
||||||
|
endif;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fires at the end of the Tools Administration screen.
|
* Fires at the end of the Tools Administration screen.
|
||||||
*
|
*
|
||||||
* @since 2.8.0
|
* @since 2.8.0
|
||||||
*/
|
*/
|
||||||
do_action( 'tool_box' );
|
do_action( 'tool_box' );
|
||||||
|
|
||||||
?>
|
?>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user