diff --git sites/all/modules/addtoany/addtoany.module sites/all/modules/addtoany/addtoany.module
index e9b7572..6a5b0c2 100644
--- sites/all/modules/addtoany/addtoany.module
+++ sites/all/modules/addtoany/addtoany.module
@@ -195,3 +195,13 @@ function _addtoany_create_button($node=NULL, $teaser = FALSE) {
   ));
 
 }
+
+/**
+ * Implementation of hook_views_api().
+ */
+function addtoany_views_api() {
+  return array(
+    'api' => 2,
+    'path' => drupal_get_path('module', 'addtoany') . '/views',
+  );
+}
diff --git sites/all/modules/addtoany/views/addtoany.views.inc sites/all/modules/addtoany/views/addtoany.views.inc
new file mode 100644
index 0000000..f1f0cba
--- /dev/null
+++ sites/all/modules/addtoany/views/addtoany.views.inc
@@ -0,0 +1,38 @@
+<?php
+// $Id$
+/**
+ * @file
+ * Views integration for addtoany.
+ */
+
+/**
+ * Implementation of hook_views_data().
+ */
+function addtoany_views_data() {
+  // Add the addtoany link to the node fields
+  $data['node']['addtoany_link'] = array(
+    'title' => t('Addtoany link'),
+    'help' => t('Link provided by the addtoany module'),
+    'field' => array(
+      'handler' => 'addtoany_handler_field_addtoany_link',
+      'click sortable' => FALSE,
+    )
+  );
+  return $data;
+}
+
+/**
+ * Implementation of hook_views_handlers().
+ */
+function addtoany_views_handlers() {
+  return array(
+    'info' => array(
+      'path' => drupal_get_path('module', 'addtoany') . '/views',
+    ),
+    'handlers' => array(
+      'addtoany_handler_field_addtoany_link' => array(
+        'parent' => 'views_handler_field_node_link',
+      ),
+    ),
+  );
+}
diff --git sites/all/modules/addtoany/views/addtoany_handler_field_addtoany_link.inc sites/all/modules/addtoany/views/addtoany_handler_field_addtoany_link.inc
new file mode 100644
index 0000000..03764d0
--- /dev/null
+++ sites/all/modules/addtoany/views/addtoany_handler_field_addtoany_link.inc
@@ -0,0 +1,24 @@
+<?php
+// $Id$
+/**
+ * @file
+ * Views field handler for the addtoany link field
+ */
+
+/**
+ * Field handler to present a addtoany links.
+ */
+class addtoany_handler_field_addtoany_link extends views_handler_field_node_link {
+  function construct() {
+    parent::construct();
+    $this->additional_fields['title'] = 'title';
+  }
+
+  function render($values) {
+    $node = new stdClass();
+    $node->nid = $values->{$this->aliases['nid']};
+    $node->title = $values->{$this->aliases['title']};
+
+    return _addtoany_create_button($node, $teaser);
+  }
+}
