1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * @file
- * Contains Application Programmer Interface (API) functions for this module.
- */
- /**
- * Retrieve the instance id based on the organism.
- */
- function tripal_jbrowse_page_get_instance_id($conditions, $options) {
- // First retrieve the organism_id.
- $organism_id = chado_query('SELECT organism_id FROM {organism} WHERE genus=:genus AND species=:species',
- [
- ':genus' => $conditions['genus'],
- ':species' => $conditions['species']
- ])->fetchField();
- // Then retrieve the instance for that organism.
- if ($options['load_instance']) {
- $instances = tripal_jbrowse_mgmt_get_instances(['organism_id' => $organism_id]);
- return $instances[0];
- }
- else {
- return db_select('tripal_jbrowse_mgmt_instances', 'I')
- ->fields('I', ['id'])
- ->condition('organism_id', $organism_id)
- ->execute()->fetchField();
- }
- }
- /**
- * Retrieve the instance id based on the organism.
- */
- function tripal_jbrowse_page_is_instance_public($instance_id) {
- $excluded_instances = variable_get('trpjbrowse_page_exclude', []);
- if (!is_array($excluded_instances)) {
- $excluded_instances = unserialize($excluded_instances);
- }
- if (isset($excluded_instances[$instance_id])) {
- if ($excluded_instances[$instance_id] === $instance_id) {
- return FALSE;
- }
- else {
- return TRUE;
- }
- }
- else {
- return TRUE;
- }
- }
|