Changeset 20104
- Timestamp:
- 03/03/2012 02:40:43 AM (13 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-list-table.php
r20100 r20104 904 904 * @access private 905 905 */ 906 function _js_vars( $extra_args = array()) {906 function _js_vars() { 907 907 $current_screen = get_current_screen(); 908 908 … … 915 915 ); 916 916 917 if ( is_array( $extra_args ) )918 $args = array_merge( $args, $extra_args );919 920 917 printf( "<script type='text/javascript'>list_args = %s;</script>\n", json_encode( $args ) ); 921 918 } -
trunk/wp-admin/includes/class-wp-themes-list-table.php
r20100 r20104 126 126 $version = $theme->display('Version'); 127 127 $author = $theme->display('Author'); 128 128 129 129 $activate_link = wp_nonce_url( "themes.php?action=activate&template=" . urlencode( $template ) . "&stylesheet=" . urlencode( $stylesheet ), 'switch-theme_' . $template ); 130 130 $preview_link = esc_url( add_query_arg( 131 131 array( 'preview' => 1, 'template' => $template, 'stylesheet' => $stylesheet, 'preview_iframe' => true, 'TB_iframe' => 'true' ), 132 132 home_url( '/' ) ) ); 133 133 134 134 $actions = array(); 135 135 $actions[] = '<a href="' . $activate_link . '" class="activatelink" title="' … … 141 141 . '" onclick="' . "return confirm( '" . esc_js( sprintf( __( "You are about to delete this theme '%s'\n 'Cancel' to stop, 'OK' to delete." ), $title ) ) 142 142 . "' );" . '">' . __( 'Delete' ) . '</a>'; 143 143 144 144 $actions = apply_filters( 'theme_action_links', $actions, $theme ); 145 145 146 146 $actions = implode ( ' | ', $actions ); 147 147 ?> … … 154 154 /* translators: 1: theme title, 2: theme version, 3: theme author */ 155 155 printf( __( '%1$s %2$s by %3$s' ), $title, $version, $author ) ; ?></h3> 156 156 157 157 <span class='action-links'><?php echo $actions ?></span> 158 158 <span class="separator hide-if-no-js">| </span><a href="#" class="theme-detail hide-if-no-js" tabindex='4'><?php _e('Details') ?></a> … … 228 228 $args = array_merge( $args, $extra_args ); 229 229 230 parent::_js_vars( $args ); 230 printf( "<script type='text/javascript'>var theme_list_args = %s;</script>\n", json_encode( $args ) ); 231 parent::_js_vars(); 231 232 } 232 233 }
Note: See TracChangeset
for help on using the changeset viewer.