Making WordPress.org


Ignore:
Timestamp:
12/19/2017 04:22:37 PM (7 years ago)
Author:
obenland
Message:

PLugins: Clean up formatting with phpcbf

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-readme-validator.php

    r5333 r6287  
    11<?php
    22namespace WordPressdotorg\Plugin_Directory\Shortcodes;
     3
    34use WordPressdotorg\Plugin_Directory\Readme\Validator;
    45
     
    2122            <form method="post" action="">
    2223                <p>
    23                     <input type="text" name="readme_url" size="70" placeholder="https://" value="<?php if ( isset( $_POST['readme_url'] ) ) { echo esc_attr( $_POST['readme_url'] ); } ?>" />
    24                     <input type="submit" value="<?php esc_attr_e( 'Validate!', 'wporg-plugins' ); ?>" />
     24                    <input type="text" name="readme_url" size="70" placeholder="https://" value="
     25                    <?php
     26                    if ( isset( $_POST['readme_url'] ) ) {
     27                        echo esc_attr( $_POST['readme_url'] );
     28                    }
     29                    ?>
     30                    " />
     31                    <input type="submit" class="button button-secondary" value="<?php esc_attr_e( 'Validate!', 'wporg-plugins' ); ?>" />
    2532                </p>
    2633            </form>
     
    2835            <p><?php _e( '... or paste your <code>readme.txt</code> here:', 'wporg-plugins' ); ?></p>
    2936            <form method="post" action="">
    30                 <textarea rows="20" cols="100" name="readme_contents" placeholder="=== Plugin Name ==="><?php
     37                <textarea rows="20" cols="100" name="readme_contents" placeholder="=== Plugin Name ===">
     38                    <?php
    3139                    if ( isset( $_POST['readme_contents'] ) ) {
    3240                        echo esc_textarea( wp_unslash( $_POST['readme_contents'] ) );
    3341                    }
    34                 ?></textarea>
    35                 <p><input type="submit" value="<?php esc_attr_e( 'Validate!', 'wporg-plugins' ); ?>" /></p>
     42                    ?>
     43                </textarea>
     44                <p><input type="submit" class="button button-secondary" value="<?php esc_attr_e( 'Validate!', 'wporg-plugins' ); ?>" /></p>
    3645            </form>
    3746        </div>
     
    4352     */
    4453    protected static function validate_readme() {
    45         if (  !empty( $_POST['readme_url'] ) ) {
     54        if ( ! empty( $_POST['readme_url'] ) ) {
    4655            $errors = Validator::instance()->validate_url( wp_unslash( $_POST['readme_url'] ) );
    4756
    48         } elseif ( !empty( $_POST['readme_contents'] ) ) {
     57        } elseif ( ! empty( $_POST['readme_contents'] ) ) {
    4958            $errors = Validator::instance()->validate_content( wp_unslash( $_REQUEST['readme_contents'] ) );
    5059
     
    5867            'errors'   => __( 'Fatal Errors:', 'wporg-plugins' ),
    5968            'warnings' => __( 'Warnings:', 'wporg-plugins' ),
    60             'notes'    => __( 'Notes:', 'wporg-plugins' )
     69            'notes'    => __( 'Notes:', 'wporg-plugins' ),
    6170        );
    6271        foreach ( $error_types as $field => $warning_label ) {
    63             if ( !empty( $errors[ $field ] ) ) {
     72            if ( ! empty( $errors[ $field ] ) ) {
    6473                $output .= "{$warning_label}\n<ul class='{$field} error'>\n";
    6574                foreach ( $errors[ $field ] as $notice ) {
     
    7281        if ( empty( $output ) ) {
    7382            $output .= '<div class="notice notice-success notice-alt">';
    74             $output .= '<p>' . __( 'Congratulations! No errors found.', 'wporg-plugins' ) .'</p>' ;
     83            $output .= '<p>' . __( 'Congratulations! No errors found.', 'wporg-plugins' ) . '</p>';
    7584            $output .= '</div>';
    7685        }
Note: See TracChangeset for help on using the changeset viewer.