Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: pre-upload-ui

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1771      do_action( 'upload_ui_over_quota' );
1772      return;
1773 }
1774
1775 /**
1776  * Fires just before the legacy (pre-3.5.0) upload interface is loaded.
1777  *
1778  * @since 2.6.0
1779  */
1780 do_action( 'pre-upload-ui' );
1781
1782 $post_params = array(
1783      "post_id" => $post_id,
1784      "_wpnonce" => wp_create_nonce('media-form'),
1785      "type" => $_type,
1786      "tab" => $_tab,
1787      "short" => "1",
1788 );
1789