浏览代码

Fixed bugs with Views integration

Stephen Ficklin 8 年之前
父节点
当前提交
f8f3c3c297

+ 0 - 16
tripal/includes/TripalFields/TripalField.inc

@@ -311,22 +311,6 @@ class TripalField {
    */
   public function viewsDataAlter(&$data) {
 
-    $bundle_name = $this->instance['bundle'];
-    $field_name = $this->field['field_name'];
-    $data[$bundle_name][$field_name] = array(
-      'title' => $this->instance['label'],
-      'help' => $this->instance['description'],
-      'field' => array(
-        'handler' => 'views_handler_field',
-        'click sortable' => TRUE,
-      ),
-      'filter' => array(
-        'handler' => 'views_handler_filter_string',
-      ),
-      'sort' => array(
-        'handler' => 'views_handler_sort',
-      ),
-    );
   }
 
   /**

+ 20 - 7
tripal/tripal.views.inc

@@ -33,6 +33,7 @@ function tripal_views_data() {
   tripal_entity_views_data($data);
   tripal_views_data_fields($data);
 
+  dpm($data);
   return $data;
 }
 
@@ -68,7 +69,6 @@ function tripal_views_data_fields(&$data) {
       }
     }
 
-    // Call the hook_field_views_data_alter() hook.
     drupal_alter('field_views_data', $result, $field, $module);
 
     if (is_array($result)) {
@@ -91,12 +91,25 @@ function tripal_entity_views_data(&$data) {
   while ($bundle = $bundles->fetchObject()) {
 
     // Each bundle gets it's own "table".
-     $data[$bundle->name]['table']['group'] = t($bundle->label);
-     $data[$bundle->name]['table']['base'] = array(
-       'query class' => 'tripal_views_query',
-       'title' => t($bundle->label),
-       'help' => t('Tripal ' . $bundle->label . ' pages'),
-     );
+    $data[$bundle->name]['table']['group'] = t($bundle->label);
+    $data[$bundle->name]['table']['base'] = array(
+      'query class' => 'tripal_views_query',
+      'title' => t($bundle->label),
+      'help' => t('Tripal ' . $bundle->label . ' pages'),
+    );
+    $data[$bundle->name]['entity_id'] = array(
+      'title' => t('Entity ID'),
+      'help' => t('The unique entity ID for this content type.'),
+      'field' => array(
+        'handler' => 'tripal_views_handler_field_entity',
+      ),
+      'filter' => array(
+        'handler' => 'views_handler_filter_numeric',
+      ),
+      'sort' => array(
+        'handler' => 'views_handler_sort',
+      ),
+    );
   }
 }
 

+ 2 - 0
tripal/tripal_views_query.inc

@@ -83,6 +83,8 @@ class tripal_views_query extends views_plugin_query {
     foreach ($results['TripalEntity'] as $entity_id => $stub) {
       $entities = array($entity_id => $stub);
       $view->result[$i] = new stdClass();
+      $view->result[$i]->entity = $stub;
+      $view->result[$i]->entity_id = $entity_id;
       foreach ($this->fields as $details) {
         $field_name = $details['field_name'];
         $field = field_info_field($field_name);

+ 31 - 0
tripal/views_handlers/tripal_views_handler_field.inc

@@ -8,6 +8,8 @@
  * Views field handler for basic TripalFields fields.
  */
 class tripal_views_handler_field extends views_handler_field {
+
+
   function query() {
     parent::query();
     // We need to add an alias to our TripalFields so that the
@@ -17,4 +19,33 @@ class tripal_views_handler_field extends views_handler_field {
     // tripal_views_query plugin.
     $this->field_alias = $this->real_field;
   }
+
+  /**
+   * Get the value that's supposed to be rendered.
+   *
+   * This api exists so that other modules can easy set the values of the field
+   * without having the need to change the render method as well.
+   *
+   * @param $values
+   *   An object containing all retrieved values.
+   * @param $field
+   *   Optional name of the field where the value is stored.
+   */
+  function get_value($values, $field = NULL) {
+    $alias = isset($field) ? $this->aliases[$field] : $this->field_alias;
+    if (isset($values->{$alias})) {
+      return $values->{$alias};
+    }
+  }
+
+  /**
+   * Render the field.
+   *
+   * @param $values
+   *   The values retrieved from the database.
+   */
+  function render($values) {
+    $value = $this->get_value($values);
+    return $this->sanitize_value($value);
+  }
 }

+ 130 - 130
tripal_chado/tripal_chado.views.inc

@@ -22,136 +22,136 @@ function tripal_chado_views_data() {
   return $data;
 }
 
-/**
- * Implements hook_views_data_alter().
- */
-function tripal_chado_views_data_alter(&$data) {
-
-  // Adds integration for chado-based fields.
-  tripal_chado_add_field_views_data($data);
-
-  return $data;
-}
-
-/**
- * Adds integration for chado-based fields.
- *
- * We can't use hook_field_view_data since this only works when the
- * storage engine is of type 'field_sql_storage' and of course,
- * ours is not. Thus we create our own implementation of field_views_data()
- * for our storage engine.
- */
-function tripal_chado_add_field_views_data(&$data) {
-  foreach (field_info_fields() as $field) {
-    if ($field['storage']['type'] != 'field_chado_storage') {
-      continue;
-    }
-
-    $field_name = $field['field_name'];
-    $field_type = $field['type'];
-
-
-    // Currently, we only handle integration of chado fields with TripalEntity.
-    // @todo: extend this to work with other entities in the future.
-    if (isset($field['bundles']['TripalEntity']) AND isset($field['settings']['chado_column'])) {
-
-      // We currently don't support prop tables for views integration due
-      // in part to the multiple values but also b/c we can't indicate which
-      // type of property to show. Thus, instead of warning the user,
-      // we just won't integrate it at this time.
-      // @todo: Handle property fields.
-      if (preg_match('/prop$/', $field['settings']['chado_table'])) {
-        continue;
-      }
-
-      // Get some information about the chado table in order to make good
-      // default choices for handlers.
-      $table_desc = chado_get_schema($field['settings']['chado_table']);
-      $field_defn = $table_desc['fields'][ $field['settings']['chado_column'] ];
-
-      // We also need to know if this field is a foreign key.
-      $fk_defn = FALSE;
-      foreach ($table_desc['foreign keys'] as $details) {
-        foreach ($details['columns'] as $left_field => $right_field) {
-          if ($left_field == $field['settings']['chado_column']) {
-            $fk_defn = array(
-              'left_table' => $field['settings']['chado_table'],
-              'left_field' => $left_field,
-              'right_table' => $details['table'],
-              'right_field' => $right_field,
-            );
-          }
-        }
-      }
-
-      // Unfortunatly we can't use the field label since that is set at the
-      // instance level and fields are integrated at the field level (independant of bundle).
-      // Thus we will simply make the most readable and informative field name we can.
-      $data['tripal_entity'][$field_name]['title'] = ucfirst(str_replace('_',' ',$field['settings']['chado_table']))
-        . ': ' .ucfirst(str_replace('_',' ',$field['settings']['chado_column']));
-
-      // The help should be 'Appears in: TripalEntity: gene, organism'
-      // so that users know where they can use it. This requires a little extra work since all
-      // we have access to at this point is bio_data_2, bio_data_4 but since that's not very
-      // informative, extra work is worth it ;-).
-      $entity_info = entity_get_info('TripalEntity');
-      $bundle_labels = array();
-      foreach ($field['bundles']['TripalEntity'] as $bundle_id) {
-        $bundle_labels[] = $entity_info['bundles'][$bundle_id]['label'];
-      }
-      $data['tripal_entity'][$field_name]['help'] = 'Appears in: TripalEntity:' . implode(', ', $bundle_labels);
-
-      // Define the field.
-      $data['tripal_entity'][$field_name]['field']['chado_field'] = $field['settings']['chado_column'];
-      $data['tripal_entity'][$field_name]['field']['chado_table'] = $field['settings']['chado_table'];
-      $data['tripal_entity'][$field_name]['field']['field_name'] = $field['field_name'];
-      $data['tripal_entity'][$field_name]['field']['entity_table'] = 'tripal_entity';
-      $data['tripal_entity'][$field_name]['field']['entity_type'] = 'TripalEntity';
-      $data['tripal_entity'][$field_name]['field']['bundles'] = $field['bundles']['TripalEntity'];
-      $data['tripal_entity'][$field_name]['field']['handler'] = 'chado_views_handler_field';
-      $data['tripal_entity'][$field_name]['field']['click sortable'] = FALSE;
-
-      // Define the Filter.
-      $data['tripal_entity'][$field_name]['filter']['chado_field'] = $field['settings']['chado_column'];
-      $data['tripal_entity'][$field_name]['filter']['chado_table'] = $field['settings']['chado_table'];
-      $data['tripal_entity'][$field_name]['filter']['field_name'] = $field['field_name'];
-      $data['tripal_entity'][$field_name]['filter']['entity_table'] = 'tripal_entity';
-      $data['tripal_entity'][$field_name]['filter']['entity_type'] = 'TripalEntity';
-      $data['tripal_entity'][$field_name]['filter']['bundles'] = $field['bundles']['TripalEntity'];
-      $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_string';
-
-      // Define sorting.
-      $data['tripal_entity'][$field_name]['sort']['chado_field'] = $field['settings']['chado_column'];
-      $data['tripal_entity'][$field_name]['sort']['chado_table'] = $field['settings']['chado_table'];
-      $data['tripal_entity'][$field_name]['sort']['field_name'] = $field['field_name'];
-      $data['tripal_entity'][$field_name]['sort']['entity_table'] = 'tripal_entity';
-      $data['tripal_entity'][$field_name]['sort']['entity_type'] = 'TripalEntity';
-      $data['tripal_entity'][$field_name]['sort']['bundles'] = $field['bundles']['TripalEntity'];
-      $data['tripal_entity'][$field_name]['sort']['handler'] = 'chado_views_handler_sort';
-
-      // Specify special handlers.
-      if ($fk_defn) {
-        $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_fk';
-        $data['tripal_entity'][$field_name]['filter']['foreign_key'] = $fk_defn;
-      }
-      if ($field_defn['type'] == 'boolean') {
-        $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_boolean';
-        $data['tripal_entity'][$field_name]['filter']['label'] = $field['settings']['chado_column'];
-        $data['tripal_entity'][$field_name]['filter']['type'] = 'yes-no';
-      }
-      elseif ($field_defn['type'] == 'datetime') {
-        $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_date';
-      }
-
-      // Allow the fields to alter the default selections from above.
-      tripal_load_include_field_type($field_type);
-      if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
-        $field_obj = new $field_type($field);
-        $field_obj->views_data_alter($data['tripal_entity'][$field_name], $field, $entity_info);
-      }
-    }
-  }
-}
+// /**
+//  * Implements hook_views_data_alter().
+//  */
+// function tripal_chado_views_data_alter(&$data) {
+
+//   // Adds integration for chado-based fields.
+//   tripal_chado_add_field_views_data($data);
+
+//   return $data;
+// }
+
+// /**
+//  * Adds integration for chado-based fields.
+//  *
+//  * We can't use hook_field_view_data since this only works when the
+//  * storage engine is of type 'field_sql_storage' and of course,
+//  * ours is not. Thus we create our own implementation of field_views_data()
+//  * for our storage engine.
+//  */
+// function tripal_chado_add_field_views_data(&$data) {
+//   foreach (field_info_fields() as $field) {
+//     if ($field['storage']['type'] != 'field_chado_storage') {
+//       continue;
+//     }
+
+//     $field_name = $field['field_name'];
+//     $field_type = $field['type'];
+
+
+//     // Currently, we only handle integration of chado fields with TripalEntity.
+//     // @todo: extend this to work with other entities in the future.
+//     if (isset($field['bundles']['TripalEntity']) AND isset($field['settings']['chado_column'])) {
+
+//       // We currently don't support prop tables for views integration due
+//       // in part to the multiple values but also b/c we can't indicate which
+//       // type of property to show. Thus, instead of warning the user,
+//       // we just won't integrate it at this time.
+//       // @todo: Handle property fields.
+//       if (preg_match('/prop$/', $field['settings']['chado_table'])) {
+//         continue;
+//       }
+
+//       // Get some information about the chado table in order to make good
+//       // default choices for handlers.
+//       $table_desc = chado_get_schema($field['settings']['chado_table']);
+//       $field_defn = $table_desc['fields'][ $field['settings']['chado_column'] ];
+
+//       // We also need to know if this field is a foreign key.
+//       $fk_defn = FALSE;
+//       foreach ($table_desc['foreign keys'] as $details) {
+//         foreach ($details['columns'] as $left_field => $right_field) {
+//           if ($left_field == $field['settings']['chado_column']) {
+//             $fk_defn = array(
+//               'left_table' => $field['settings']['chado_table'],
+//               'left_field' => $left_field,
+//               'right_table' => $details['table'],
+//               'right_field' => $right_field,
+//             );
+//           }
+//         }
+//       }
+
+//       // Unfortunatly we can't use the field label since that is set at the
+//       // instance level and fields are integrated at the field level (independant of bundle).
+//       // Thus we will simply make the most readable and informative field name we can.
+//       $data['tripal_entity'][$field_name]['title'] = ucfirst(str_replace('_',' ',$field['settings']['chado_table']))
+//         . ': ' .ucfirst(str_replace('_',' ',$field['settings']['chado_column']));
+
+//       // The help should be 'Appears in: TripalEntity: gene, organism'
+//       // so that users know where they can use it. This requires a little extra work since all
+//       // we have access to at this point is bio_data_2, bio_data_4 but since that's not very
+//       // informative, extra work is worth it ;-).
+//       $entity_info = entity_get_info('TripalEntity');
+//       $bundle_labels = array();
+//       foreach ($field['bundles']['TripalEntity'] as $bundle_id) {
+//         $bundle_labels[] = $entity_info['bundles'][$bundle_id]['label'];
+//       }
+//       $data['tripal_entity'][$field_name]['help'] = 'Appears in: TripalEntity:' . implode(', ', $bundle_labels);
+
+//       // Define the field.
+//       $data['tripal_entity'][$field_name]['field']['chado_field'] = $field['settings']['chado_column'];
+//       $data['tripal_entity'][$field_name]['field']['chado_table'] = $field['settings']['chado_table'];
+//       $data['tripal_entity'][$field_name]['field']['field_name'] = $field['field_name'];
+//       $data['tripal_entity'][$field_name]['field']['entity_table'] = 'tripal_entity';
+//       $data['tripal_entity'][$field_name]['field']['entity_type'] = 'TripalEntity';
+//       $data['tripal_entity'][$field_name]['field']['bundles'] = $field['bundles']['TripalEntity'];
+//       $data['tripal_entity'][$field_name]['field']['handler'] = 'chado_views_handler_field';
+//       $data['tripal_entity'][$field_name]['field']['click sortable'] = FALSE;
+
+//       // Define the Filter.
+//       $data['tripal_entity'][$field_name]['filter']['chado_field'] = $field['settings']['chado_column'];
+//       $data['tripal_entity'][$field_name]['filter']['chado_table'] = $field['settings']['chado_table'];
+//       $data['tripal_entity'][$field_name]['filter']['field_name'] = $field['field_name'];
+//       $data['tripal_entity'][$field_name]['filter']['entity_table'] = 'tripal_entity';
+//       $data['tripal_entity'][$field_name]['filter']['entity_type'] = 'TripalEntity';
+//       $data['tripal_entity'][$field_name]['filter']['bundles'] = $field['bundles']['TripalEntity'];
+//       $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_string';
+
+//       // Define sorting.
+//       $data['tripal_entity'][$field_name]['sort']['chado_field'] = $field['settings']['chado_column'];
+//       $data['tripal_entity'][$field_name]['sort']['chado_table'] = $field['settings']['chado_table'];
+//       $data['tripal_entity'][$field_name]['sort']['field_name'] = $field['field_name'];
+//       $data['tripal_entity'][$field_name]['sort']['entity_table'] = 'tripal_entity';
+//       $data['tripal_entity'][$field_name]['sort']['entity_type'] = 'TripalEntity';
+//       $data['tripal_entity'][$field_name]['sort']['bundles'] = $field['bundles']['TripalEntity'];
+//       $data['tripal_entity'][$field_name]['sort']['handler'] = 'chado_views_handler_sort';
+
+//       // Specify special handlers.
+//       if ($fk_defn) {
+//         $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_fk';
+//         $data['tripal_entity'][$field_name]['filter']['foreign_key'] = $fk_defn;
+//       }
+//       if ($field_defn['type'] == 'boolean') {
+//         $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_boolean';
+//         $data['tripal_entity'][$field_name]['filter']['label'] = $field['settings']['chado_column'];
+//         $data['tripal_entity'][$field_name]['filter']['type'] = 'yes-no';
+//       }
+//       elseif ($field_defn['type'] == 'datetime') {
+//         $data['tripal_entity'][$field_name]['filter']['handler'] = 'chado_views_handler_filter_date';
+//       }
+
+//       // Allow the fields to alter the default selections from above.
+//       tripal_load_include_field_type($field_type);
+//       if (preg_match('/^chado/', $field_type) and class_exists($field_type)) {
+//         $field_obj = new $field_type($field);
+//         $field_obj->views_data_alter($data['tripal_entity'][$field_name], $field, $entity_info);
+//       }
+//     }
+//   }
+// }
 
 /**
  * Provides the data array for the tripal custom tables management