123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- require_once('views/project.views.inc');
- require_once('views/project.views.inc');
- function tripal_project_views_data() {
- $data = array();
-
- $data = array_merge($data, retrieve_project_views_data());
- $data = array_merge($data, retrieve_project_views_data());
-
- return $data;
- }
- function tripal_project_views_handlers() {
- return array(
- 'info' => array(
- 'path' => drupal_get_path('module', 'tripal_project') . '/views/handlers',
- ),
- 'handlers' => array(
- ),
- );
- }
|