[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/ -> media.php (source)

   1  <?php
   2  /**
   3   * Media management action handler.
   4   *
   5   * This file is deprecated, use 'wp-admin/upload.php' instead.
   6   *
   7   * @deprecated 6.3.0
   8   * @package WordPress
   9   * @subpackage Administration
  10   */
  11  
  12  /** Load WordPress Administration Bootstrap. */
  13  require_once  __DIR__ . '/admin.php';
  14  
  15  $parent_file  = 'upload.php';
  16  $submenu_file = 'upload.php';
  17  
  18  wp_reset_vars( array( 'action' ) );
  19  
  20  switch ( $action ) {
  21      case 'editattachment':
  22      case 'edit':
  23          if ( empty( $_GET['attachment_id'] ) ) {
  24              wp_redirect( admin_url( 'upload.php?error=deprecated' ) );
  25              exit;
  26          }
  27          $att_id = (int) $_GET['attachment_id'];
  28  
  29          wp_redirect( admin_url( "upload.php?item={$att_id}&error=deprecated" ) );
  30          exit;
  31  
  32      default:
  33          wp_redirect( admin_url( 'upload.php?error=deprecated' ) );
  34          exit;
  35  }


Generated : Fri Apr 26 08:20:02 2024 Cross-referenced by PHPXref