Index: signup_status_log.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/signup_status/Attic/signup_status_log.module,v
retrieving revision 1.1.2.2
diff -u -r1.1.2.2 signup_status_log.module
--- signup_status_log.module	3 Jan 2008 08:42:30 -0000	1.1.2.2
+++ signup_status_log.module	3 Jan 2008 09:46:01 -0000
@@ -6,6 +6,53 @@
  *   Provide a UI for browsing status messages by uid, nid or both.
  */
 
+function signup_status_log_views_tables() {
+  $tables['signup_log'] = array(
+    'name' => 'signup_log',
+    'join' => array(
+      'left' => array(
+        'table' => 'node'
+        'field' => 'nid'
+      ),
+      'right' => array(
+        'field' => 'nid',
+      ),
+    ),
+    'uid' => array(
+        'name' => t('Signup UID'),
+        'sortable' => TRUE,
+        'option' => 'string',
+        'help' => t('Display a signup UID node.'),
+    ),
+    'anon_mail' => array(
+        'name' => t('Signup: anonymous email address'),
+        'sortable' => TRUE,
+        'option' => 'string',
+        'help' => t('Display the post time of the node.'),
+    ),
+    'signup_time' => array(
+        'name' => t('Signup: Time'),
+        'sortable' => TRUE,
+        'handler' => views_handler_field_dates(),
+        'option' => 'string',
+        'help' => t('Display the post time of the node.'),
+    ),
+    'form_data' => array(
+        'name' => t('Signup: Form data'),
+        'sortable' => TRUE,
+        'option' => 'string',
+        'help' => t('Signup form data.'),
+    ),
+    'status' => array(
+        'name' => t('Signup: status'),
+        'sortable' => TRUE,
+        'option' => 'string',
+        'help' => t('Display the signup status of the node.'),
+    ),
+  );
+  return $tables;
+}
+
 
 /**
  * Implementation of hook_update_signup_status
