<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; }
#msg dl a { font-weight: bold}
#msg dl a:link { color:#fc3; }
#msg dl a:active { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[16476] trunk/wp-admin/includes/media.php: get_media_item_args,
swfupload_post_params, and swfupload_success_handler filters.</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/16476">16476</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-11-19 00:04:04 +0000 (Fri, 19 Nov 2010)</dd>
</dl>
<h3>Log Message</h3>
<pre>get_media_item_args, swfupload_post_params, and swfupload_success_handler filters. Props simonwheatley. fixes <a href="http://trac.wordpress.org/ticket/13817">#13817</a></pre>
<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesmediaphp">trunk/wp-admin/includes/media.php</a></li>
</ul>
</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/includes/media.php (16475 => 16476)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/media.php        2010-11-18 23:07:59 UTC (rev 16475)
+++ trunk/wp-admin/includes/media.php        2010-11-19 00:04:04 UTC (rev 16476)
</span><span class="lines">@@ -1122,6 +1122,7 @@
</span><span class="cx">
</span><span class="cx">         $default_args = array( 'errors' => null, 'send' => $post->post_parent ? post_type_supports( get_post_type( $post->post_parent ), 'editor' ) : true, 'delete' => true, 'toggle' => true, 'show_title' => true );
</span><span class="cx">         $args = wp_parse_args( $args, $default_args );
</span><ins>+        $args = apply_filters( 'get_media_item_args', $args );
</ins><span class="cx">         extract( $args, EXTR_SKIP );
</span><span class="cx">
</span><span class="cx">         $toggle_on = __( 'Show' );
</span><span class="lines">@@ -1397,7 +1398,26 @@
</span><span class="cx">
</span><span class="cx"> do_action('pre-upload-ui');
</span><span class="cx">
</span><del>-if ( $flash ) : ?>
</del><ins>+if ( $flash ) :
+
+// Set the post params, which SWFUpload will post back with the file, and pass
+// them through a filter.
+$post_params = array(
+                "post_id" => $post_id,
+                "auth_cookie" => (is_ssl() ? $_COOKIE[SECURE_AUTH_COOKIE] : $_COOKIE[AUTH_COOKIE]),
+                "logged_in_cookie" => $_COOKIE[LOGGED_IN_COOKIE],
+                "_wpnonce" => wp_create_nonce('media-form'),
+                "type" => $type,
+                "tab" => $tab,
+                "short" => "1",
+);
+$post_params = apply_filters( 'swfupload_post_params', $post_params );
+$p = array();
+foreach ( $post_params as $param => & $val )
+        $p[] = "\t\t'$param' : '$val'";
+$post_params_str = implode( ", \n", $p );
+
+?>
</ins><span class="cx"> <script type="text/javascript">
</span><span class="cx"> //<![CDATA[
</span><span class="cx"> var swfu;
</span><span class="lines">@@ -1415,13 +1435,7 @@
</span><span class="cx">                         file_post_name: "async-upload",
</span><span class="cx">                         file_types: "<?php echo apply_filters('upload_file_glob', '*.*'); ?>",
</span><span class="cx">                         post_params : {
</span><del>-                                "post_id" : "<?php echo $post_id; ?>",
-                                "auth_cookie" : "<?php echo (is_ssl() ? $_COOKIE[SECURE_AUTH_COOKIE] : $_COOKIE[AUTH_COOKIE]); ?>",
-                                "logged_in_cookie": "<?php echo $_COOKIE[LOGGED_IN_COOKIE]; ?>",
-                                "_wpnonce" : "<?php echo wp_create_nonce('media-form'); ?>",
-                                "type" : "<?php echo $type; ?>",
-                                "tab" : "<?php echo $tab; ?>",
-                                "short" : "1"
</del><ins>+                                <?php echo $post_params_str; ?>
</ins><span class="cx">                         },
</span><span class="cx">                         file_size_limit : "<?php echo $max_upload_size; ?>b",
</span><span class="cx">                         file_dialog_start_handler : fileDialogStart,
</span><span class="lines">@@ -1429,7 +1443,7 @@
</span><span class="cx">                         upload_start_handler : uploadStart,
</span><span class="cx">                         upload_progress_handler : uploadProgress,
</span><span class="cx">                         upload_error_handler : uploadError,
</span><del>-                        upload_success_handler : uploadSuccess,
</del><ins>+                        upload_success_handler : <?php echo apply_filters( 'swfupload_success_handler', 'uploadSuccess' ); ?>,
</ins><span class="cx">                         upload_complete_handler : uploadComplete,
</span><span class="cx">                         file_queue_error_handler : fileQueueError,
</span><span class="cx">                         file_dialog_complete_handler : fileDialogComplete,
</span></span></pre>
</div>
</div>
</body>
</html>