1234567891011121314151617181920212223242526 |
- <?php
- /**
- * @file
- * Builds the public jbrowse listing.
- */
- /**
- * Builds the public jbrowse listing.
- */
- function tripal_jbrowse_page_listing_page() {
- $settings = tripal_jbrowse_mgmt_get_settings();
- // Retrieve all the instances...
- $instances = tripal_jbrowse_mgmt_get_instances();
- drupal_add_css(drupal_get_path('module', 'tripal_jbrowse_page') . '/theme/tripal_jbrowse_page.css');
-
- // Add the URL for each to link to.
- foreach($instances as $k => $instance) {
- $q = tripal_jbrowse_mgmt_build_http_query($instance);
- $instances[$k]->url = url($settings['link'], ['query' => $q, 'absolute' => TRUE]);
- }
- // Use the template to render the page.
- return theme('jbrowse_instance_public_listing', ['instances' => $instances]);
- }
|