<!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] [2705] trunk/bp-core/bp-core-widgets.php:
  Moved welcome widget to back compat plugin.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd>2705</dd>
<dt>Author</dt> <dd>apeatling</dd>
<dt>Date</dt> <dd>2010-02-12 14:37:31 +0000 (Fri, 12 Feb 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Moved welcome widget to back compat plugin.</pre>

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

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkbpcorebpcorewidgetsphp"></a>
<div class="modfile"><h4>Modified: trunk/bp-core/bp-core-widgets.php (2704 => 2705)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/bp-core/bp-core-widgets.php        2010-02-12 14:28:15 UTC (rev 2704)
+++ trunk/bp-core/bp-core-widgets.php        2010-02-12 14:37:31 UTC (rev 2705)
</span><span class="lines">@@ -2,70 +2,12 @@
</span><span class="cx"> 
</span><span class="cx"> /* Register widgets for the core component */
</span><span class="cx"> function bp_core_register_widgets() {
</span><del>-        add_action('widgets_init', create_function('', 'return register_widget(&quot;BP_Core_Welcome_Widget&quot;);') );
</del><span class="cx">         add_action('widgets_init', create_function('', 'return register_widget(&quot;BP_Core_Members_Widget&quot;);') );
</span><span class="cx">         add_action('widgets_init', create_function('', 'return register_widget(&quot;BP_Core_Whos_Online_Widget&quot;);') );
</span><span class="cx">         add_action('widgets_init', create_function('', 'return register_widget(&quot;BP_Core_Recently_Active_Widget&quot;);') );
</span><span class="cx"> }
</span><span class="cx"> add_action( 'bp_register_widgets', 'bp_core_register_widgets' );
</span><span class="cx"> 
</span><del>-/*** WELCOME WIDGET *****************/
-
-class BP_Core_Welcome_Widget extends WP_Widget {
-        function bp_core_welcome_widget() {
-                parent::WP_Widget( false, $name = __( 'Welcome', 'buddypress' ) );
-        }
-
-        function widget($args, $instance) {
-                extract( $args );
-        ?&gt;
-                &lt;?php echo $before_widget; ?&gt;
-                &lt;?php echo $before_title
-                        . $instance['title']
-                        . $after_title; ?&gt;
-
-                &lt;?php if ( $instance['title'] ) : ?&gt;&lt;h3&gt;&lt;?php echo attribute_escape( stripslashes( $instance['title'] ) ) ?&gt;&lt;/h3&gt;&lt;?php endif; ?&gt;
-                &lt;?php if ( $instance['text'] ) : ?&gt;&lt;p&gt;&lt;?php echo apply_filters( 'bp_core_welcome_widget_text', $instance['text'] ) ?&gt;&lt;/p&gt;&lt;?php endif; ?&gt;
-
-                &lt;?php if ( !is_user_logged_in() ) { ?&gt;
-                &lt;div class=&quot;create-account&quot;&gt;&lt;div class=&quot;visit generic-button&quot;&gt;&lt;a href=&quot;&lt;?php bp_signup_page() ?&gt;&quot; title=&quot;&lt;?php _e('Create Account', 'buddypress') ?&gt;&quot;&gt;&lt;?php _e('Create Account', 'buddypress') ?&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;
-                &lt;?php } ?&gt;
-
-                &lt;?php echo $after_widget; ?&gt;
-        &lt;?php
-        }
-
-        function update( $new_instance, $old_instance ) {
-                $instance = $old_instance;
-                $instance['title'] = strip_tags( $new_instance['title'] );
-                $instance['text'] = strip_tags( wp_filter_post_kses( $new_instance['text'] ) );
-
-                return $instance;
-        }
-
-        function form( $instance ) {
-                $instance = wp_parse_args( (array) $instance, array( 'title' =&gt; '', 'text' =&gt; '' ) );
-                $title = strip_tags( $instance['title'] );
-                $text = strip_tags( $instance['text'] );
-                ?&gt;
-                        &lt;p&gt;&lt;label for=&quot;bp-widget-welcome-title&quot;&gt;&lt;?php _e('Title:', 'buddypress'); ?&gt; &lt;input class=&quot;widefat&quot; id=&quot;&lt;?php echo $this-&gt;get_field_id( 'title' ); ?&gt;&quot; name=&quot;&lt;?php echo $this-&gt;get_field_name( 'title' ); ?&gt;&quot; type=&quot;text&quot; value=&quot;&lt;?php echo attribute_escape( stripslashes( $title ) ); ?&gt;&quot; /&gt;&lt;/label&gt;&lt;/p&gt;
-                        &lt;p&gt;
-                                &lt;label for=&quot;bp-widget-welcome-text&quot;&gt;&lt;?php _e( 'Welcome Text:' , 'buddypress'); ?&gt;
-                                        &lt;textarea id=&quot;&lt;?php echo $this-&gt;get_field_id( 'text' ); ?&gt;&quot; name=&quot;&lt;?php echo $this-&gt;get_field_name( 'text' ); ?&gt;&quot; class=&quot;widefat&quot; style=&quot;height: 100px&quot;&gt;&lt;?php echo attribute_escape( stripslashes( $text ) ); ?&gt;&lt;/textarea&gt;
-                                &lt;/label&gt;
-                        &lt;/p&gt;
-        &lt;?php
-        }
-}
-add_filter( 'bp_core_welcome_widget_text', 'attribute_escape' );
-add_filter( 'bp_core_welcome_widget_text', 'wptexturize' );
-add_filter( 'bp_core_welcome_widget_text', 'convert_smilies' );
-add_filter( 'bp_core_welcome_widget_text', 'convert_chars' );
-add_filter( 'bp_core_welcome_widget_text', 'stripslashes' );
-add_filter( 'bp_core_welcome_widget_text', 'wpautop' );
-add_filter( 'bp_core_welcome_widget_text', 'force_balance_tags' );
-
-
</del><span class="cx"> /*** MEMBERS WIDGET *****************/
</span><span class="cx"> 
</span><span class="cx"> class BP_Core_Members_Widget extends WP_Widget {
</span></span></pre>
</div>
</div>

</body>
</html>