Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (8 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/link-manager.php

    r42228 r42343  
    99/** Load WordPress Administration Bootstrap */
    1010require_once( dirname( __FILE__ ) . '/admin.php' );
    11 if ( ! current_user_can( 'manage_links' ) )
     11if ( ! current_user_can( 'manage_links' ) ) {
    1212    wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) );
     13}
    1314
    14 $wp_list_table = _get_list_table('WP_Links_List_Table');
     15$wp_list_table = _get_list_table( 'WP_Links_List_Table' );
    1516
    1617// Handle bulk deletes
     
    2122
    2223    $redirect_to = admin_url( 'link-manager.php' );
    23     $bulklinks = (array) $_REQUEST['linkcheck'];
     24    $bulklinks   = (array) $_REQUEST['linkcheck'];
    2425
    2526    if ( 'delete' == $doaction ) {
     
    4445$wp_list_table->prepare_items();
    4546
    46 $title = __('Links');
     47$title     = __( 'Links' );
    4748$this_file = $parent_file = 'link-manager.php';
    4849
    49 get_current_screen()->add_help_tab( array(
    50 'id'        => 'overview',
    51 'title'     => __('Overview'),
    52 'content'   =>
    53     '<p>' . sprintf(__('You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.'), 'widgets.php') . '</p>' .
    54     '<p>' . __('Links may be separated into Link Categories; these are different than the categories used on your posts.') . '</p>' .
    55     '<p>' . __('You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.') . '</p>'
    56 ) );
    57 get_current_screen()->add_help_tab( array(
    58 'id'        => 'deleting-links',
    59 'title'     => __('Deleting Links'),
    60 'content'   =>
    61     '<p>' . __('If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.') . '</p>'
    62 ) );
     50get_current_screen()->add_help_tab(
     51    array(
     52        'id'      => 'overview',
     53        'title'   => __( 'Overview' ),
     54        'content' =>
     55             '<p>' . sprintf( __( 'You can add links here to be displayed on your site, usually using <a href="%s">Widgets</a>. By default, links to several sites in the WordPress community are included as examples.' ), 'widgets.php' ) . '</p>' .
     56             '<p>' . __( 'Links may be separated into Link Categories; these are different than the categories used on your posts.' ) . '</p>' .
     57             '<p>' . __( 'You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table.' ) . '</p>',
     58    )
     59);
     60get_current_screen()->add_help_tab(
     61    array(
     62        'id'      => 'deleting-links',
     63        'title'   => __( 'Deleting Links' ),
     64        'content' =>
     65             '<p>' . __( 'If you delete a link, it will be removed permanently, as Links do not have a Trash function yet.' ) . '</p>',
     66    )
     67);
    6368
    6469get_current_screen()->set_help_sidebar(
    65     '<p><strong>' . __('For more information:') . '</strong></p>' .
    66     '<p>' . __('<a href="https://codex.wordpress.org/Links_Screen">Documentation on Managing Links</a>') . '</p>' .
    67     '<p>' . __('<a href="https://wordpress.org/support/">Support Forums</a>') . '</p>'
     70    '<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
     71    '<p>' . __( '<a href="https://codex.wordpress.org/Links_Screen">Documentation on Managing Links</a>' ) . '</p>' .
     72    '<p>' . __( '<a href="https://wordpress.org/support/">Support Forums</a>' ) . '</p>'
    6873);
    6974
    70 get_current_screen()->set_screen_reader_content( array(
    71     'heading_list' => __( 'Links list' ),
    72 ) );
     75get_current_screen()->set_screen_reader_content(
     76    array(
     77        'heading_list' => __( 'Links list' ),
     78    )
     79);
    7380
    7481include_once( ABSPATH . 'wp-admin/admin-header.php' );
    7582
    76 if ( ! current_user_can('manage_links') )
    77     wp_die(__('Sorry, you are not allowed to edit the links for this site.'));
     83if ( ! current_user_can( 'manage_links' ) ) {
     84    wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) );
     85}
    7886
    7987?>
    8088
    8189<div class="wrap nosubsub">
    82 <h1 class="wp-heading-inline"><?php
     90<h1 class="wp-heading-inline">
     91<?php
    8392echo esc_html( $title );
    84 ?></h1>
     93?>
     94</h1>
    8595
    8696<a href="link-add.php" class="page-title-action"><?php echo esc_html_x( 'Add New', 'link' ); ?></a>
     
    96106
    97107<?php
    98 if ( isset($_REQUEST['deleted']) ) {
     108if ( isset( $_REQUEST['deleted'] ) ) {
    99109    echo '<div id="message" class="updated notice is-dismissible"><p>';
    100110    $deleted = (int) $_REQUEST['deleted'];
    101     printf(_n('%s link deleted.', '%s links deleted', $deleted), $deleted);
     111    printf( _n( '%s link deleted.', '%s links deleted', $deleted ), $deleted );
    102112    echo '</p></div>';
    103     $_SERVER['REQUEST_URI'] = remove_query_arg(array('deleted'), $_SERVER['REQUEST_URI']);
     113    $_SERVER['REQUEST_URI'] = remove_query_arg( array( 'deleted' ), $_SERVER['REQUEST_URI'] );
    104114}
    105115?>
Note: See TracChangeset for help on using the changeset viewer.