diff --git a/handlers/views_handler_field_contextual_links.inc b/handlers/views_handler_field_contextual_links.inc
index 16d45c2..4386e05 100644
--- a/handlers/views_handler_field_contextual_links.inc
+++ b/handlers/views_handler_field_contextual_links.inc
@@ -10,35 +10,7 @@
  *
  * @ingroup views_field_handlers
  */
-class views_handler_field_contextual_links extends views_handler_field {
-  function option_definition() {
-    $options = parent::option_definition();
-
-    $options['fields'] = array('default' => array());
-    $options['destination'] = array('default' => TRUE, 'bool' => TRUE);
-
-    return $options;
-  }
-
-  function options_form(&$form, &$form_state) {
-    $all_fields = $this->view->display_handler->get_field_labels();
-    // Offer to include only those fields that follow this one.
-    $field_options = array_slice($all_fields, 0, array_search($this->options['id'], array_keys($all_fields)));
-    $form['fields'] = array(
-      '#type' => 'checkboxes',
-      '#title' => t('Fields'),
-      '#description' => t('Fields to be included as contextual links.'),
-      '#options' => $field_options,
-      '#default_value' => $this->options['fields'],
-    );
-    $form['destination'] = array(
-      '#type' => 'checkbox',
-      '#title' => t('Include destination'),
-      '#description' => t('Include a "destination" parameter in the link to return the user to the original view upon completing the contextual action.'),
-      '#default_value' => $this->options['destination'],
-    );
-  }
-
+class views_handler_field_contextual_links extends views_handler_field_links {
   function pre_render(&$values) {
     // Add a row plugin css class for the contextual link.
     $class = 'contextual-links-region';
@@ -50,35 +22,18 @@ class views_handler_field_contextual_links extends views_handler_field {
     }
   }
 
+  function options_form(&$form, &$form_state) {
+    parent::options_form($form, $form_state);
+
+    $form['fields']['#description'] = t('Fields to be included as contextual links.');
+    $form['destination']['#description'] = t('Include a "destination" parameter in the link to return the user to the original view upon completing the contextual action.');
+  }
+
   /**
    * Render the contextual fields.
    */
   function render($values) {
-    $links = array();
-    foreach ($this->options['fields'] as $field) {
-      if (empty($this->view->field[$field]->last_render_text)) {
-        continue;
-      }
-      $title = $this->view->field[$field]->last_render_text;
-      $path = '';
-      if (!empty($this->view->field[$field]->options['alter']['path'])) {
-        $path = $this->view->field[$field]->options['alter']['path'];
-      }
-      if (!empty($title)) {
-        // Make sure that tokens are replaced for this paths as well.
-        $tokens = $this->get_render_tokens(array());
-        $path = strip_tags(decode_entities(strtr($path, $tokens)));
-
-        $links[$field] = array(
-          'href' => $path,
-          'title' => $title,
-        );
-        if (!empty($this->options['destination'])) {
-          $links[$field]['query'] = drupal_get_destination();
-        }
-      }
-    }
-
+    $links = $this->get_links();
     if (!empty($links)) {
       $build = array(
         '#prefix' => '<div class="contextual-links-wrapper">',
@@ -97,6 +52,4 @@ class views_handler_field_contextual_links extends views_handler_field {
       return '';
     }
   }
-
-  function query() { }
 }
diff --git a/handlers/views_handler_field_ctools_dropdown.inc b/handlers/views_handler_field_ctools_dropdown.inc
new file mode 100644
index 0000000..24ffbe1
--- /dev/null
+++ b/handlers/views_handler_field_ctools_dropdown.inc
@@ -0,0 +1,32 @@
+<?php
+
+/**
+ * @file
+ * Definition of views_handler_field_ctools_dropdown.
+ */
+
+/**
+ * Field handler which displays some amount of links as ctools dropdown button.
+ *
+ * @ingroup views_field_handlers
+ */
+class views_handler_field_ctools_dropdown extends views_handler_field_links {
+  function options_form(&$form, &$form_state) {
+    parent::options_form($form, $form_state);
+    $form['fields']['#destination'] = t('Fields to be included as ctools dropdown button.');
+    $form['destination']['#description'] = t('Include a "destination" parameter in the link to return the user to the original view upon completing a link action.');
+  }
+
+  /**
+   * Render the dropdown button.
+   */
+  function render($values) {
+    $links = $this->get_links();
+    if (!empty($links)) {
+      return theme('links__ctools_dropbutton', array('links' => $links, 'attributes' => array('class' => array('links', 'inline'))));
+    }
+    else {
+      return '';
+    }
+  }
+}
diff --git a/handlers/views_handler_field_links.inc b/handlers/views_handler_field_links.inc
new file mode 100644
index 0000000..4caeaae
--- /dev/null
+++ b/handlers/views_handler_field_links.inc
@@ -0,0 +1,76 @@
+<?php
+
+/**
+ * @file
+ * Definition of views_handler_field_links.
+ */
+
+/**
+ * A abstract handler which provides a collection of links.
+ *
+ * @ingroup views_field_handlers
+ */
+class views_handler_field_links extends views_handler_field {
+  function option_definition() {
+    $options = parent::option_definition();
+
+    $options['fields'] = array('default' => array());
+    $options['destination'] = array('default' => TRUE, 'bool' => TRUE);
+
+    return $options;
+  }
+
+  function options_form(&$form, &$form_state) {
+    $all_fields = $this->view->display_handler->get_field_labels();
+    // Offer to include only those fields that follow this one.
+    $field_options = array_slice($all_fields, 0, array_search($this->options['id'], array_keys($all_fields)));
+    $form['fields'] = array(
+      '#type' => 'checkboxes',
+      '#title' => t('Fields'),
+      '#description' => t('Fields to be included as links.'),
+      '#options' => $field_options,
+      '#default_value' => $this->options['fields'],
+    );
+    $form['destination'] = array(
+      '#type' => 'checkbox',
+      '#title' => t('Include destination'),
+      '#description' => t('Include a "destination" parameter in the link to return the user to the original view upon completing the link action.'),
+      '#default_value' => $this->options['destination'],
+    );
+  }
+
+  /**
+   * Return the list of links of this field.
+   *
+   * @return array
+   *   The links which are used by the render function.
+   */
+  function get_links() {
+    $links = array();
+    foreach ($this->options['fields'] as $field) {
+      if (empty($this->view->field[$field]->last_render_text)) {
+        continue;
+      }
+      $title = $this->view->field[$field]->last_render_text;
+      $path = '';
+      if (!empty($this->view->field[$field]->options['alter']['path'])) {
+        $path = $this->view->field[$field]->options['alter']['path'];
+      }
+      // Make sure that tokens are replaced for this paths as well.
+      $tokens = $this->get_render_tokens(array());
+      $path = strip_tags(decode_entities(strtr($path, $tokens)));
+
+      $links[$field] = array(
+        'href' => $path,
+        'title' => $title,
+      );
+      if (!empty($this->options['destination'])) {
+        $links[$field]['query'] = drupal_get_destination();
+      }
+    }
+
+    return $links;
+  }
+
+  function query() { }
+}
diff --git a/modules/views.views.inc b/modules/views.views.inc
index 5ea55bc..902a4bb 100644
--- a/modules/views.views.inc
+++ b/modules/views.views.inc
@@ -83,6 +83,14 @@ function views_views_data() {
     );
   }
 
+  $data['views']['ctools_dropdown'] = array(
+    'title' => t('Dropdown links'),
+    'help' => t('Displays fields in a dropdown list, like on the views listing page.'),
+    'field' => array(
+      'handler' => 'views_handler_field_ctools_dropdown',
+    ),
+  );
+
   $data['views']['combine'] = array(
    'title' => t('Combine fields filter'),
     'help' => t('Combine two fields together and search by them.'),
diff --git a/views.info b/views.info
index 24bf497..9433f06 100644
--- a/views.info
+++ b/views.info
@@ -25,9 +25,11 @@ files[] = handlers/views_handler_field.inc
 files[] = handlers/views_handler_field_counter.inc
 files[] = handlers/views_handler_field_boolean.inc
 files[] = handlers/views_handler_field_contextual_links.inc
+files[] = handlers/views_handler_field_ctools_dropdown.inc
 files[] = handlers/views_handler_field_custom.inc
 files[] = handlers/views_handler_field_date.inc
 files[] = handlers/views_handler_field_entity.inc
+files[] = handlers/views_handler_field_links.inc
 files[] = handlers/views_handler_field_markup.inc
 files[] = handlers/views_handler_field_math.inc
 files[] = handlers/views_handler_field_numeric.inc
