<!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>[14801] trunk/wp-admin/edit-form-advanced.php:
  Add post_updated_messages filter.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14801">14801</a></dd>
<dt>Author</dt> <dd>nacin</dd>
<dt>Date</dt> <dd>2010-05-22 05:40:29 +0000 (Sat, 22 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add post_updated_messages filter. Include explicit indexes in the arrays to make it easier for plugin authors to follow. fixes <a href="http://trac.wordpress.org/ticket/13444">#13444</a>.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpadmineditformadvancedphp">trunk/wp-admin/edit-form-advanced.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadmineditformadvancedphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-admin/edit-form-advanced.php (14800 => 14801)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/edit-form-advanced.php        2010-05-22 05:09:08 UTC (rev 14800)
+++ trunk/wp-admin/edit-form-advanced.php        2010-05-22 05:40:29 UTC (rev 14801)
</span><span class="lines">@@ -35,35 +35,37 @@
</span><span class="cx"> 
</span><span class="cx"> $messages = array();
</span><span class="cx"> $messages['post'] = array(
</span><del>-        '',
-        sprintf( __('Post updated. &lt;a href=&quot;%s&quot;&gt;View post&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
-        __('Custom field updated.'),
-        __('Custom field deleted.'),
-        __('Post updated.'),
</del><ins>+         0 =&gt; '', // Unused. Messages start at index 1.
+         1 =&gt; sprintf( __('Post updated. &lt;a href=&quot;%s&quot;&gt;View post&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
+         2 =&gt; __('Custom field updated.'),
+         3 =&gt; __('Custom field deleted.'),
+         4 =&gt; __('Post updated.'),
</ins><span class="cx">         /* translators: %s: date and time of the revision */
</span><del>-        isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
-        sprintf( __('Post published. &lt;a href=&quot;%s&quot;&gt;View post&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
-        __('Post saved.'),
-        sprintf( __('Post submitted. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview post&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
-        sprintf( __('Post scheduled for: &lt;strong&gt;%1$s&lt;/strong&gt;. &lt;a target=&quot;_blank&quot; href=&quot;%2$s&quot;&gt;Preview post&lt;/a&gt;'),
</del><ins>+         5 =&gt; isset($_GET['revision']) ? sprintf( __('Post restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
+         6 =&gt; sprintf( __('Post published. &lt;a href=&quot;%s&quot;&gt;View post&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
+         7 =&gt; __('Post saved.'),
+         8 =&gt; sprintf( __('Post submitted. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview post&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
+         9 =&gt; sprintf( __('Post scheduled for: &lt;strong&gt;%1$s&lt;/strong&gt;. &lt;a target=&quot;_blank&quot; href=&quot;%2$s&quot;&gt;Preview post&lt;/a&gt;'),
</ins><span class="cx">                 // translators: Publish box date format, see http://php.net/date
</span><span class="cx">                 date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post-&gt;post_date ) ), esc_url( get_permalink($post_ID) ) ),
</span><del>-        sprintf( __('Post draft updated. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview post&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
</del><ins>+        10 =&gt; sprintf( __('Post draft updated. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview post&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
</ins><span class="cx"> );
</span><span class="cx"> $messages['page'] = array(
</span><del>-        '',
-        sprintf( __('Page updated. &lt;a href=&quot;%s&quot;&gt;View page&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
-        __('Custom field updated.'),
-        __('Custom field deleted.'),
-        __('Page updated.'),
-        isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
-        sprintf( __('Page published. &lt;a href=&quot;%s&quot;&gt;View page&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
-        __('Page saved.'),
-        sprintf( __('Page submitted. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview page&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
-        sprintf( __('Page scheduled for: &lt;strong&gt;%1$s&lt;/strong&gt;. &lt;a target=&quot;_blank&quot; href=&quot;%2$s&quot;&gt;Preview page&lt;/a&gt;'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post-&gt;post_date ) ), esc_url( get_permalink($post_ID) ) ),
-        sprintf( __('Page draft updated. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview page&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
</del><ins>+         0 =&gt; '', // Unused. Messages start at index 1.
+         1 =&gt; sprintf( __('Page updated. &lt;a href=&quot;%s&quot;&gt;View page&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
+         2 =&gt; __('Custom field updated.'),
+         3 =&gt; __('Custom field deleted.'),
+         4 =&gt; __('Page updated.'),
+         5 =&gt; isset($_GET['revision']) ? sprintf( __('Page restored to revision from %s'), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false,
+         6 =&gt; sprintf( __('Page published. &lt;a href=&quot;%s&quot;&gt;View page&lt;/a&gt;'), esc_url( get_permalink($post_ID) ) ),
+         7 =&gt; __('Page saved.'),
+         8 =&gt; sprintf( __('Page submitted. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview page&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
+         9 =&gt; sprintf( __('Page scheduled for: &lt;strong&gt;%1$s&lt;/strong&gt;. &lt;a target=&quot;_blank&quot; href=&quot;%2$s&quot;&gt;Preview page&lt;/a&gt;'), date_i18n( __( 'M j, Y @ G:i' ), strtotime( $post-&gt;post_date ) ), esc_url( get_permalink($post_ID) ) ),
+        10 =&gt; sprintf( __('Page draft updated. &lt;a target=&quot;_blank&quot; href=&quot;%s&quot;&gt;Preview page&lt;/a&gt;'), esc_url( add_query_arg( 'preview', 'true', get_permalink($post_ID) ) ) ),
</ins><span class="cx"> );
</span><span class="cx"> 
</span><ins>+$messages = apply_filters( 'post_updated_messages', $messages );
+
</ins><span class="cx"> $message = false;
</span><span class="cx"> if ( isset($_GET['message']) ) {
</span><span class="cx">         $_GET['message'] = absint( $_GET['message'] );
</span></span></pre>
</div>
</div>

</body>
</html>