aboutsummaryrefslogtreecommitdiff
path: root/fblikebutton.views.inc
diff options
context:
space:
mode:
Diffstat (limited to 'fblikebutton.views.inc')
-rw-r--r--fblikebutton.views.inc20
1 files changed, 20 insertions, 0 deletions
diff --git a/fblikebutton.views.inc b/fblikebutton.views.inc
new file mode 100644
index 0000000..dd162dc
--- /dev/null
+++ b/fblikebutton.views.inc
@@ -0,0 +1,20 @@
+<?php
+
+/**
+ * @file
+ */
+
+/**
+ * Implements hook_views_data()
+ */
+function fblikebutton_views_data() {
+ $data['node']['fblikebutton'] = array(
+ 'field' => array(
+ 'title' => t('Facebook Like Button'),
+ 'help' => t('Adds a facebook like button.'),
+ 'handler' => 'fblikebutton_handler_field_fblikebutton',
+ ),
+ );
+
+ return $data;
+}