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
264                     <p class="upload-instructions drop-instructions"><?php _ex( 'or', 'Uploader: Drop files here - or - Select Files' ); ?></p>
265                     <button type="button" class="browser button button-hero" aria-labelledby="post-upload-info"><?php _e( 'Select Files' ); ?></button>
266                </div>
267
268                <div class="upload-inline-status"></div>
269
270                <div class="post-upload-ui" id="post-upload-info">
271                     <?php
272                     /** This action is documented in wp-admin/includes/media.php */
273                     do_action( 'pre-upload-ui' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
274                     /** This action is documented in wp-admin/includes/media.php */
275                     do_action( 'pre-plupload-upload-ui' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
276
277                     if ( 10 === remove_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' ) ) {
278                          /** This action is documented in wp-admin/includes/media.php */
279                          do_action( 'post-plupload-upload-ui' ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
280                          add_action( 'post-plupload-upload-ui', 'media_upload_flash_bypass' );
281                     } else {
282                          /** This action is documented in wp-admin/includes/media.php */