diff -Naur ubercart/uc_role_views/uc_role_views.info ubercart2/uc_role_views/uc_role_views.info
--- ubercart/uc_role_views/uc_role_views.info	1969-12-31 18:00:00.000000000 -0600
+++ ubercart2/uc_role_views/uc_role_views.info	2014-02-10 10:23:52.000000000 -0600
@@ -0,0 +1,9 @@
+name = Roles Views Integration
+description = Expose roles expiration date to views.
+dependencies[] = uc_roles
+package = "Ubercart - core (optional)"
+
+version = "7.x-2.0"
+project = "ubercart"
+
+core = 7.x
diff -Naur ubercart/uc_role_views/uc_role_views.module ubercart2/uc_role_views/uc_role_views.module
--- ubercart/uc_role_views/uc_role_views.module	1969-12-31 18:00:00.000000000 -0600
+++ ubercart2/uc_role_views/uc_role_views.module	2014-02-10 10:46:38.000000000 -0600
@@ -0,0 +1,8 @@
+<?php
+
+
+
+function uc_role_views_views_api() {
+  return array('api' => '3.0');
+}
+
diff -Naur ubercart/uc_role_views/uc_role_views.views.inc ubercart2/uc_role_views/uc_role_views.views.inc
--- ubercart/uc_role_views/uc_role_views.views.inc	1969-12-31 18:00:00.000000000 -0600
+++ ubercart2/uc_role_views/uc_role_views.views.inc	2014-02-10 10:49:00.000000000 -0600
@@ -0,0 +1,110 @@
+<?php
+
+/**
+ * @file
+ * Views 2 hooks and callback registries.
+ */
+
+
+/**
+ * Implementation of hook_views_data().
+ */
+ 
+ function uc_role_views_views_data() {
+  $data['uc_roles_expirations']['table']['group']  = t('User');
+
+  $data['uc_roles_expirations']['table']['join'] = array(
+    'users' => array(
+      'left_field' => 'uid',
+      'field' => 'uid',
+    ),
+  );
+
+
+  // Expose the role expiration date
+  $data['uc_roles_expirations']['expiration'] = array(
+    'title' => t('Ubercart Role expiration date/time'),
+    'help' => t('Date and time the role will expire. (See also Role expiration role.)'),
+    'field' => array(
+      'handler' => 'views_handler_field_date',
+      'click sortable' => TRUE,
+    ),
+    'sort' => array(
+      'handler' => 'views_handler_sort_date',
+    ),
+    'filter' => array(
+      'handler' => 'views_handler_filter_date',
+    ),
+  );
+
+
+  // Expose the role id from uc_roles_expirations
+  $data['uc_roles_expirations']['rid'] = array(
+    'title' => t('Ubercart Role expiration role'),
+    'help' => t('The Role that corresponds with the Role expiration date/time'),
+    // Information for displaying the rid
+    'field' => array(
+      'handler' => 'uc_role_views_handler_field_rid',
+      'click sortable' => TRUE,
+    ),
+    // Information for accepting a rid as an argument
+    'argument' => array(
+      'handler' => 'views_handler_argument_users_roles_rid',
+      'name field' => 'title', // the field to display in the summary.
+      'numeric' => TRUE,
+      'validate type' => 'rid',
+    ),
+    // Information for accepting a uid as a filter
+    'filter' => array(
+      'handler' => 'views_handler_filter_user_roles',
+    ),
+    // Information for sorting on a uid.
+    'sort' => array(
+      'handler' => 'views_handler_sort',
+    ),
+  );
+
+
+  return $data;
+}
+
+class uc_role_views_handler_field_rid extends views_handler_field {
+
+  // Derived from views_handler_field_user_roles
+  // Purpose: get the *names* that correspond to the role_expire_rids.
+  function pre_render($values) {
+    $roles = array();
+    $this->items = array();
+
+    // Get all the unique role ids into the keys of $roles. Initializing into
+    // array_keys helps prevent us from having a list where the same rid appears
+    // over and over and over.
+    foreach ($values as $result) {
+      $roles[$this->get_value($result, NULL, TRUE)] = FALSE;
+    }
+
+    if ($roles) {
+      $result = db_query("SELECT r.rid, r.name FROM {role} r WHERE r.rid IN (:rids) ORDER BY r.name",
+        array(':rids' => array_keys($roles)));
+      foreach ($result as $role) {
+        $this->items[$role->rid]['role'] = check_plain($role->name);
+        $this->items[$role->rid]['rid'] = $role->rid;
+      }
+    }
+  }
+
+  // Render the rid as the role name.
+  function render($values) {
+
+    // Return the role name corresponding to the role ID.
+    // TODO: Should I be using this->get_value() here?
+    $rid = $values->role_expire_rid;
+    if ($rid) {
+      $role = $this->items[$rid]['role'];
+      if (!empty($role)) {
+        return $role;
+      }
+    }
+  }
+}
+
