Making WordPress.org

Changeset 5210


Ignore:
Timestamp:
03/30/2017 03:57:21 PM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Move admin link into meta widget

It's pretty meta after all.

See #2111.

Location:
sites/trunk/wordpress.org/public_html/wp-content
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/widgets/class-meta.php

    r5001 r5210  
    4646                <li><?php printf( __( 'Designed to work with: %s', 'wporg-plugins' ), $built_for ); ?></li>
    4747            <?php endif; ?>
     48
    4849            <li><?php printf( __( 'Version: %s', 'wporg-plugins' ), '<strong>' . get_post_meta( $post->ID, 'version', true ) . '</strong>' ); ?></li>
    4950            <li>
     
    5657            </li>
    5758            <li><?php printf( __( 'Active installs: %s', 'wporg-plugins' ), '<strong>' . Template::active_installs( false ) . '</strong>' ); ?></li>
    58             <?php if ( $tested_up_to = (string) get_post_meta( $post->ID, 'tested', true ) ) { ?>
     59
     60            <?php if ( $tested_up_to = (string) get_post_meta( $post->ID, 'tested', true ) ) : ?>
    5961                <li><?php printf( __( 'Tested up to: %s', 'wporg-plugins' ), '<strong>' . $tested_up_to . '</strong>' ); ?></li>
    60             <?php } ?>
     62            <?php endif; ?>
     63
    6164            <?php if ( $tags = get_the_term_list( $post->ID, 'plugin_tags', '<div class="tags">', '', '</div>' ) ) : ?>
    62                 <li><?php
     65                <li class="clear"><?php
    6366                    $terms = get_the_terms( $post, 'plugin_tags' );
    64                     if ( 1 == count( $terms ) ) {
     67                    if ( 1 == count( $terms ) ) :
    6568                        printf( __( 'Tag: %s', 'wporg-plugins' ), $tags );
    66                     } else {
     69                    else :
    6770                        printf( __( 'Tags: %s', 'wporg-plugins' ), $tags );
    68                     }
     71                    endif;
    6972                ?></li>
     73            <?php endif; ?>
     74
     75            <?php if ( current_user_can( 'plugin_admin_view', $post ) ) : ?>
     76                <li class="hide-if-no-js">
     77                    <?php
     78                        printf( __( 'Admin access: %s', 'wporg-plugins' ),
     79                            sprintf( '<strong><a class="plugin-admin" href="%s">%s</a></strong>', esc_url( get_permalink() . 'admin/' ), __( 'View Admin', 'wporg-plugins' ) )
     80                        );
     81                    ?>
     82                </li>
    7083            <?php endif; ?>
    7184        </ul>
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/template-parts/plugin-single.php

    r5036 r5210  
    9595                </div>
    9696            <?php endif; ?>
    97             <div>
    98                 <a class="plugin-download button download-button button-large" href="<?php echo esc_url( Template::download_link() ); ?>" itemprop="downloadUrl"><?php _e( 'Download', 'wporg-plugins' ); ?></a>
    99                 <?php if ( current_user_can( 'plugin_admin_view', get_post() ) ) : ?>
    100                     <br>
    101                     <a class="plugin-edit hide-if-no-js" href="<?php echo esc_url( get_permalink() . 'admin/' ); ?>"><?php _e( 'Admin', 'wporg-plugins' ); ?></a>
    102                 <?php endif; ?>
    103             </div>
    10497
     98            <a class="plugin-download button download-button button-large" href="<?php echo esc_url( Template::download_link() ); ?>" itemprop="downloadUrl"><?php _e( 'Download', 'wporg-plugins' ); ?></a>
    10599            <meta itemprop="softwareVersion" content="<?php echo esc_attr( get_post_meta( get_the_ID(), 'version', true ) ); ?>">
    106100            <meta itemprop="fileFormat" content="application/zip">
Note: See TracChangeset for help on using the changeset viewer.