WP_Theme_Install_List_Table::_js_vars() – Send required variables to JavaScript land

You appear to be a bot. Output may be restricted

Description

Send required variables to JavaScript land

Usage

WP_Theme_Install_List_Table::_js_vars( $extra_args );

Parameters

$extra_args
( array ) optional – Unused.

Returns

void

Source

File name: wordpress/wp-admin/includes/class-wp-theme-install-list-table.php
Lines:

1 to 4 of 4
  public function _js_vars( $extra_args = array() ) {
    global $tab, $type;
    parent::_js_vars( compact( 'tab', 'type' ) );
  }
 

 View on GitHub View on Trac