12345678910111213141516171819202122232425 |
- <?php
- /**
- * @file
- * Describe default example views
- */
- /**
- * Implements hook_views_default_views().
- *
- * @ingroup tripal_example
- */
- function tripal_example_views_default_views() {
- $views = array();
-
- // EXPLANATION: use this function to programmatically define any default
- // Drupal views that your module will provide automatically. Typically
- // there are two default views: 1) one for the administrator to quickly
- // find data managed by your module, or 2) one for users to be able to
- // search for public data.
- //
- // See another Tripal module such as tripal_feature for an example
- // of how to setup a default views.
-
- return $views;
- }
|