Inspired by few wordpress plugins here. I have developed a wordpress sidebar widget which will let you show your favorite stackoverflow questions in the sidebar.

You can read more and download the plugin from my blog here. Its 2:00 AM now so I will add the source code soon. My PHP knowledge is less so if anyone is interested they can work more on it :)

Comments, Suggestion, Complaints are all welcome :) alt text

link|improve this question
You should know that this is not a proper question then. – GEOCHET Feb 17 '09 at 20:57
1  
Give the guy a break... – user133799 Feb 17 '09 at 21:06
1  
There is precedent for using SO for an announcement and bug tracker for a SO-related software, like stackoverflow.com/questions/320746/real-time-reputation-tracker and stackoverflow.com/questions/61553/track-your-reputation – Paul Tomblin Feb 17 '09 at 21:19
Absolutely, though I'd be happier if it was a community wiki post, since it's not really a question. – George Stocker Feb 17 '09 at 21:39
Done..changed to wiki – Shoban Feb 18 '09 at 5:25
awesome love it. – WalterJ89 Feb 23 '09 at 8:21
feedback

migrated from stackoverflow.com Aug 22 '09 at 8:51

This question came from our site for professional and enthusiast programmers.

2 Answers

It doesn't look like you can configure the username etc from the admin interface? If you need some code to do that, feel free to cut+paste it from my shoddy attempt at a plugin :-)

link|improve this answer
Thanks Steve :) will do that – Shoban Feb 24 '09 at 9:11
feedback

I used my widgetifyr.com tool to turn your widget into a more full featured widget. You still need to edit the stackoverflow user id, but you can change the title. I eliminated the iframe as well so it should fit more easily into peoples theme. It actually works as is for me even though I don't have the star images.

 <?php
    /*
    Plugin Name: favorite stackoverflow questions
    Plugin URI: http://www.widgetifyr.com
    Description: Displays favorite stackoverflow questions
    Author: Glenn Bennett
    Version: 1.0
    Author URI: http://www.widgetifyr.com

    */


    // We're putting the plugin's functions inside the init function to ensure the
    // required Sidebar Widget functions are available.

      function widget_favstack_init() 
          {
          /* Your custom code starts here */
          /* ---------------------------- */

          /* Your Function */
          function favstack()
          {

        	  /* Your Code ----------------- */ 

        	  $content = file_get_contents('http://www.codegeeks.net/SOF/SOFF.php?userid=25202');
    if ($content !== false) {
       // do something with the content
       echo $content;
    } else {
       // an error happened
       echo "Unable to read favorites";
    }

        	  /* End of Your Code ---------- */

          }

          /* -------------------------- */
          /* Your custom code ends here */

          function widget_favstack($args) 
          {

          	  // Collect our widget's options, or define their defaults.
        	  $options = get_option('widget_favstack');
        	  $title = empty($options['title']) ? __('FavStack') : $options['title'];

        	  extract($args);
        	  echo $before_widget;
        	  echo $before_title;
        	  echo $title;
        	  echo $after_title;
        	  favstack();
        	  echo $after_widget;
          }  

          // This is the function that outputs the form to let users edit
          // the widget's title. It's an optional feature, but were're doing 
          // it all for you so why not!

          function widget_favstack_control()
          {

        	// Collect our widget options.
        	$options = $newoptions = get_option('widget_favstack');

        	// This is for handing the control form submission.
        	if ( $_POST['widget_favstack-submit'] ) 
        	{
        		// Clean up control form submission options
        		$newoptions['title'] = strip_tags(stripslashes($_POST['widget_favstack-title']));
        	}

        	// If original widget options do not match control form
        	// submission options, update them.
        	if ( $options != $newoptions ) 
        	{
        		$options = $newoptions;
        		update_option('widget_favstack', $options);
        	}

        	$title = attribute_escape($options['title']);

        	echo '<p><label for="favstack-title">';
        	echo 'Title: <input style="width: 250px;" id="widget_favstack-title" name="widget_favstack-title" type="text" value="';
        	echo $title;
        	echo '" />';
        	echo '</label></p>';
        	echo '<input type="hidden" id="widget_favstack-submit" name="widget_favstack-submit" value="1" />';
          }


        // This registers the widget.
        register_sidebar_widget('favorite stackoverflow questions', 'widget_favstack');

        // This registers the (optional!) widget control form.
        register_widget_control('favorite stackoverflow questions', 'widget_favstack_control');

      }

      add_action('plugins_loaded', 'widget_favstack_init');

    ?>

Would it be possible for you to just return a list. That usually seems to work best for widgets. Also a limited number of favorites would be good.

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged