Making WordPress.org


Ignore:
Timestamp:
07/08/2016 11:30:15 PM (8 years ago)
Author:
ocean90
Message:

Rosetta Showcase: Add missing ID to URL field and use short array syntax.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/global.wordpress.org/public_html/wp-content/mu-plugins/showcase/rosetta-showcase.php

    r3655 r3656  
    2121     */
    2222    public function __construct() {
    23         add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ) );
     23        add_action( 'plugins_loaded', [ $this, 'plugins_loaded' ] );
    2424    }
    2525
     
    4141     */
    4242    public function register_post_type() {
    43         $labels = array(
     43        $labels = [
    4444            'name'               => _x( 'Showcase', 'post type general name', 'rosetta' ),
    4545            'singular_name'      => _x( 'Showcase Site', 'post type singular name', 'rosetta' ),
     
    5252            'not_found'          => __( 'Nothing found', 'rosetta' ),
    5353            'not_found_in_trash' => __( 'Nothing found in Trash', 'rosetta' ),
    54         );
    55 
    56         $args = array(
     54        ];
     55
     56        $args = [
    5757            'labels'               => $labels,
    5858            'public'               => true,
     
    6666            'can_export'           => false,
    6767            'exclude_from_search'  => true,
    68             'supports'             => array( 'title', 'excerpt' ),
     68            'supports'             => [ 'title', 'excerpt' ],
    6969            'menu_icon'            => 'dashicons-slides',
    7070            'register_meta_box_cb' => [ $this, 'register_showcase_meta_box' ],
    71         );
     71        ];
    7272
    7373        register_post_type( $this->post_type, $args );
     
    121121        ?>
    122122        <p><label for="rosetta_showcase_url"><?php _e( 'URL', 'rosetta' ); ?></label>
    123             <input style="margin-left: 0; width: 98%" name="rosetta_showcase_url" type="text" value="<?php echo esc_url( $url ); ?>" /></p>
     123            <input style="margin-left: 0; width: 98%" name="rosetta_showcase_url" id="rosetta_showcase_url" type="text" value="<?php echo esc_url( $url ); ?>" /></p>
    124124        <label for="excerpt"><?php _e( 'Description', 'rosetta' ); ?></label>
    125125        <textarea rows="1" cols="40" name="excerpt" tabindex="6" id="excerpt"><?php echo $post->post_excerpt; // textarea_escaped ?></textarea>
     
    158158     * Disables Jetpack's sharing meta box for a showcase item.
    159159     *
    160      * @param $enable Whether the metabox is visible
    161      * @param WP_Post $post    Post object.
    162      * @return bool True if metabox is visible, false if not.
     160     * @param bool    $enable Whether the metabox is enabled.
     161     * @param WP_Post $post   Post object.
     162     * @return bool True if metabox is enabled, false if not.
    163163     */
    164164    public function disable_sharing_meta_box( $enable, $post ) {
Note: See TracChangeset for help on using the changeset viewer.