<!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>[BuddyPress] [3341] trunk/bp-core/bp-core-templatetags.php:
  Add better filters to bp_search_form_type_select().</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>3341</dd>
<dt>Author</dt> <dd>djpaul</dd>
<dt>Date</dt> <dd>2010-11-02 21:50:58 +0000 (Tue, 02 Nov 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add better filters to bp_search_form_type_select(). Fixes #2503.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkbpcorebpcoretemplatetagsphp">trunk/bp-core/bp-core-templatetags.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpcorebpcoretemplatetagsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-core/bp-core-templatetags.php (3340 => 3341)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-core/bp-core-templatetags.php        2010-11-02 20:57:15 UTC (rev 3340)
+++ trunk/bp-core/bp-core-templatetags.php        2010-11-02 21:50:58 UTC (rev 3341)
</span><span class="lines">@@ -1003,28 +1003,37 @@
</span><span class="cx">         return apply_filters( 'bp_search_form_action', $bp-&gt;root_domain . '/' . BP_SEARCH_SLUG );
</span><span class="cx"> }
</span><span class="cx"> 
</span><ins>+/**
+ * Generates the basic search form as used in BP-Default's header.
+ *
+ * @global object $bp BuddyPress global settings
+ * @return string HTML &lt;select&gt; element
+ * @since 1.0
+ */
</ins><span class="cx"> function bp_search_form_type_select() {
</span><span class="cx">         global $bp;
</span><span class="cx"> 
</span><del>-        // Eventually this won't be needed and a page will be built to integrate all search results.
-        $selection_box = '&lt;select name=&quot;search-which&quot; id=&quot;search-which&quot; style=&quot;width: auto&quot;&gt;';
</del><ins>+        $options = array();
+        
+        if ( bp_is_active( 'xprofile' ) )
+                $options['members'] = __( 'Members', 'buddypress' );
</ins><span class="cx"> 
</span><del>-        if ( bp_is_active( 'xprofile' ) ) {
-                $selection_box .= '&lt;option value=&quot;members&quot;&gt;' . __( 'Members', 'buddypress' ) . '&lt;/option&gt;';
-        }
</del><ins>+        if ( bp_is_active( 'groups' ) )
+                $options['groups'] = __( 'Groups', 'buddypress' );
</ins><span class="cx"> 
</span><del>-        if ( bp_is_active( 'groups' ) ) {
-                $selection_box .= '&lt;option value=&quot;groups&quot;&gt;' . __( 'Groups', 'buddypress' ) . '&lt;/option&gt;';
-        }
</del><ins>+        if ( function_exists( 'bp_forums_is_installed_correctly' ) &amp;&amp; bp_forums_is_installed_correctly() &amp;&amp; !(int) $bp-&gt;site_options['bp-disable-forum-directory'] )
+                $options['forums'] = __( 'Forums', 'buddypress' );
</ins><span class="cx"> 
</span><del>-        if ( function_exists( 'bp_forums_is_installed_correctly' ) &amp;&amp; bp_forums_is_installed_correctly() &amp;&amp; !(int) $bp-&gt;site_options['bp-disable-forum-directory'] ) {
-                $selection_box .= '&lt;option value=&quot;forums&quot;&gt;' . __( 'Forums', 'buddypress' ) . '&lt;/option&gt;';
-        }
</del><ins>+        if ( bp_is_active( 'blogs' ) &amp;&amp; bp_core_is_multisite() )
+                $options['blogs'] = __( 'Blogs', 'buddypress' );
</ins><span class="cx"> 
</span><del>-        if ( bp_is_active( 'blogs' ) &amp;&amp; bp_core_is_multisite() ) {
-                $selection_box .= '&lt;option value=&quot;blogs&quot;&gt;' . __( 'Blogs', 'buddypress' ) . '&lt;/option&gt;';
-        }
</del><ins>+        // Eventually this won't be needed and a page will be built to integrate all search results.
+        $selection_box = '&lt;select name=&quot;search-which&quot; id=&quot;search-which&quot; style=&quot;width: auto&quot;&gt;';
</ins><span class="cx"> 
</span><ins>+        $options = apply_filters( 'bp_search_form_type_select_options', $options );
+        foreach( (array)$options as $option_value =&gt; $option_title )
+                $selection_box .= sprintf( '&lt;option value=&quot;%s&quot;&gt;%s&lt;/option&gt;', $option_value, $option_title );
+
</ins><span class="cx">         $selection_box .= '&lt;/select&gt;';
</span><span class="cx"> 
</span><span class="cx">         return apply_filters( 'bp_search_form_type_select', $selection_box );
</span></span></pre>
</div>
</div>

</body>
</html>