<!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' =&gt; null, 'send' =&gt; $post-&gt;post_parent ? post_type_supports( get_post_type( $post-&gt;post_parent ), 'editor' ) : true, 'delete' =&gt; true, 'toggle' =&gt; true, 'show_title' =&gt; 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 ) : ?&gt;
</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(
+                &quot;post_id&quot; =&gt; $post_id,
+                &quot;auth_cookie&quot; =&gt; (is_ssl() ? $_COOKIE[SECURE_AUTH_COOKIE] : $_COOKIE[AUTH_COOKIE]),
+                &quot;logged_in_cookie&quot; =&gt; $_COOKIE[LOGGED_IN_COOKIE],
+                &quot;_wpnonce&quot; =&gt; wp_create_nonce('media-form'),
+                &quot;type&quot; =&gt; $type,
+                &quot;tab&quot; =&gt; $tab,
+                &quot;short&quot; =&gt; &quot;1&quot;,
+);
+$post_params = apply_filters( 'swfupload_post_params', $post_params );
+$p = array();
+foreach ( $post_params as $param =&gt; &amp; $val )
+        $p[] = &quot;\t\t'$param' : '$val'&quot;;
+$post_params_str = implode( &quot;, \n&quot;, $p );
+
+?&gt;
</ins><span class="cx"> &lt;script type=&quot;text/javascript&quot;&gt;
</span><span class="cx"> //&lt;![CDATA[
</span><span class="cx"> var swfu;
</span><span class="lines">@@ -1415,13 +1435,7 @@
</span><span class="cx">                         file_post_name: &quot;async-upload&quot;,
</span><span class="cx">                         file_types: &quot;&lt;?php echo apply_filters('upload_file_glob', '*.*'); ?&gt;&quot;,
</span><span class="cx">                         post_params : {
</span><del>-                                &quot;post_id&quot; : &quot;&lt;?php echo $post_id; ?&gt;&quot;,
-                                &quot;auth_cookie&quot; : &quot;&lt;?php echo (is_ssl() ? $_COOKIE[SECURE_AUTH_COOKIE] : $_COOKIE[AUTH_COOKIE]); ?&gt;&quot;,
-                                &quot;logged_in_cookie&quot;: &quot;&lt;?php echo $_COOKIE[LOGGED_IN_COOKIE]; ?&gt;&quot;,
-                                &quot;_wpnonce&quot; : &quot;&lt;?php echo wp_create_nonce('media-form'); ?&gt;&quot;,
-                                &quot;type&quot; : &quot;&lt;?php echo $type; ?&gt;&quot;,
-                                &quot;tab&quot; : &quot;&lt;?php echo $tab; ?&gt;&quot;,
-                                &quot;short&quot; : &quot;1&quot;
</del><ins>+                                &lt;?php echo $post_params_str; ?&gt;
</ins><span class="cx">                         },
</span><span class="cx">                         file_size_limit : &quot;&lt;?php echo $max_upload_size; ?&gt;b&quot;,
</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 : &lt;?php echo apply_filters( 'swfupload_success_handler', 'uploadSuccess' ); ?&gt;,
</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>