Index: service_links.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/service_links/service_links.module,v
retrieving revision 1.26
diff -u -r1.26 service_links.module
--- service_links.module	26 Feb 2008 17:01:27 -0000	1.26
+++ service_links.module	22 Mar 2008 12:19:30 -0000
@@ -55,6 +55,12 @@
     '#type' => 'fieldset',
     '#title' => t('What bookmark links to show'),
   );
+  $form['what_links_to_show']['service_links_show_newskicks'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Show NewsKicks link'),
+    '#return_value' => 1,
+    '#default_value' => variable_get('service_links_show_newskicks', 1),
+  );
   $form['what_links_to_show']['service_links_show_delicious'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show del.icio.us link'),
@@ -339,7 +345,9 @@
 
   $url = urlencode($url);
   $title = urlencode($node->title);
-
+  if (variable_get('service_links_show_newskicks', 0)) {
+	$links['service_links_newskicks'] = theme('service_links_build_link', t('Newskicks'), "http://newskicks.com/node/add/storylink?edit[url]=$url&edit[title]=$title;", t('Kicks this post on NewsKicks.'), 'images/newskicks.png', $nodelink);
+	}
   if (variable_get('service_links_show_delicious', 0)) {
     $links['service_links_delicious'] = theme('service_links_build_link', t('Delicious'), "http://del.icio.us/post?url=$url&title=$title", t('Bookmark this post on del.icio.us.'), 'images/delicious.png', $nodelink);
   }

