123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- <?php
- require_once "api/tripal_entities.api.inc";
- require_once "includes/tripal_entities.chado_entity.inc";
- require_once "includes/tripal_entities.entity_form.inc";
- require_once "includes/tripal_entities.tables.inc";
- require_once "includes/TripalEntity.inc";
- require_once "includes/TripalEntityController.inc";
- require_once "includes/TripalEntityUIController.inc";
- require_once "includes/TripalBundle.inc";
- require_once "includes/TripalBundleController.inc";
- require_once "includes/TripalBundleUIController.inc";
- function tripal_entities_views_api() {
- return array(
- 'api' => 3,
- );
- }
- function tripal_entities_menu() {
- $items = array();
-
- $items['admin/tripal/bio_data'] = array(
- 'title' => 'Biological Data',
- 'description' => 'Tools for publishing, configurating and managing biological data.',
- 'page callback' => 'tripal_entities_admin_view',
- 'access arguments' => array('administer tripal data types'),
- 'file' => 'includes/tripal_entities.admin.inc',
- 'type' => MENU_NORMAL_ITEM,
- );
-
- $items['admin/tripal/bio_data/default'] = array(
- 'title' => 'Biological Data',
- 'type' => MENU_DEFAULT_LOCAL_TASK,
- 'weight' => 1,
- );
- $items['admin/tripal/bio_data/publish'] = array(
- 'title' => 'Publish',
- 'description' => 'Publish Data',
- 'page callback' => 'tripal_entities_publish',
- 'access arguments' => array('administer tripal data types'),
- 'file' => 'includes/tripal_entities.admin.inc',
- 'type' => MENU_LOCAL_TASK,
- 'weight' => 2
- );
- $items['admin/tripal/bio_data/publish/%'] = array(
- 'title' => 'Publish',
- 'description' => 'Publish Data',
- 'page callback' => 'tripal_entities_publish',
- 'page arguments' => array(4),
- 'access arguments' => array('administer tripal data types'),
- 'file' => 'includes/tripal_entities.admin.inc',
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/bio_data/access'] = array(
- 'title' => 'Access',
- 'description' => 'Set default access permissions for collections of data.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_entities_admin_access_form'),
- 'access arguments' => array('administer tripal data types'),
- 'file' => 'includes/tripal_entities.admin.inc',
- 'type' => MENU_LOCAL_TASK,
- 'weight' => 3
- );
- return $items;
- }
- function tripal_entities_permission() {
-
-
- $permissions = array(
- 'administer tripal data types' => array(
- 'title' => t('Administer Tripal data types'),
- 'description' => t('Create and delete fields for Tripal data types, and set their permissions.'),
- ),
- 'administer tripal data' => array(
- 'title' => t('Administer Tripal data'),
- 'description' => t('Edit and delete all tripal data'),
- ),
- );
- return $permissions;
- }
- function tripal_entities_theme($existing, $type, $theme, $path) {
- return array(
- 'tripal_entity' => array(
- 'render element' => 'elements',
- 'template' => 'tripal_entity',
- 'path' => "$path/theme/templates"
- ),
- 'tripal_entities_date_combo' => array(
- 'render element' => 'element',
- 'file' => 'includes/tripal_entities.chado_entity.inc',
- ),
- );
- }
- function tripal_entities_rdf_mapping() {
- return array();
- }
- function tripal_entities_entity_info() {
- $entities = array();
-
- $published_vocs = chado_generate_var('tripal_vocabulary', array('publish' => 1), array('return_array' => 1));
- foreach ($published_vocs as $voc) {
- $entities[$voc->db_id->name] = array (
-
- 'label' => $voc->db_id->name . ' (' . $voc->cv_id->name . ')',
- 'plural label' => $voc->db_id->name . ' (' . $voc->cv_id->name . ')',
-
-
- 'entity class' => 'TripalEntity',
- 'controller class' => 'TripalEntityController',
-
- 'base table' => 'tripal_entity',
-
- 'uri callback' => 'tripal_entities_vocbulary_term_uri',
-
- 'fieldable' => TRUE,
-
-
-
- 'entity keys' => array (
- 'id' => 'id',
- 'bundle' => 'bundle'
- ),
- 'bundle keys' => array (
- 'bundle' => 'bundle'
- ),
-
- 'access callback' => 'tripal_entity_access',
-
-
-
- 'bundles' => array (),
- 'label callback' => 'tripal_entity_label',
-
-
-
-
- 'admin ui' => array (
- 'path' => 'admin/content/bio_data',
- 'controller class' => 'TripalEntityUIController',
- 'menu wildcard' => '%tripal_entity',
- 'file' => 'includes/TripalEntityUIController.inc'
- ),
- 'view modes' => array (
- 'full' => array (
- 'label' => t ( 'Full content' ),
- 'custom settings' => FALSE
- ),
- 'teaser' => array (
- 'label' => t ( 'Teaser' ),
- 'custom settings' => TRUE
- )
- )
- );
-
- $entities [$voc->db_id->name . '_bundle'] = array (
- 'label' => $voc->db_id->name . ' (' . $voc->cv_id->name . ') Data Type',
- 'entity class' => 'TripalBundle',
- 'controller class' => 'TripalBundleController',
- 'base table' => 'tripal_bundle',
- 'fieldable' => FALSE,
- 'exportable' => FALSE,
- 'entity keys' => array (
- 'id' => 'id',
- 'name' => 'bundle',
- 'label' => 'label'
- ),
- 'access callback' => 'tripal_bundle_access',
- 'module' => 'tripal_entities',
-
- 'admin ui' => array (
- 'path' => 'admin/structure/bio_data/' . $voc->db_id->name,
- 'controller class' => 'TripalBundleUIController',
- 'file' => 'includes/TripalBundleUIController.inc',
- 'menu wildcard' => '%tripal_bundle',
- )
- );
- }
- return $entities;
- }
- function tripal_entities_entity_info_alter(&$entity_info) {
-
- $published_terms = chado_generate_var('tripal_term', array('publish' => 1), array('return_array' => 1));
- foreach ($published_terms as $term) {
-
-
-
- $cvterm = $term->cvterm_id;
- $entity_type = $cvterm->dbxref_id->db_id->name;
- $accession = $cvterm->dbxref_id->accession;
- $bundle_id = $entity_type . '_' . $accession;
- $label = preg_replace('/_/', ' ', ucwords($cvterm->name));
- $entity_info[$entity_type]['bundles'][$bundle_id] = array (
- 'label' => $label,
- 'admin' => array (
- 'path' => 'admin/structure/bio_data/' . $entity_type . '/manage/%tripal_bundle',
- 'real path' => 'admin/structure/bio_data/' . $entity_type . '/manage/' . $bundle_id,
- 'bundle argument' => 5,
- 'access arguments' => array (
- 'administer tripal data types'
- )
- )
- );
- }
- }
- function tripal_entities_get_published_vocabularies_as_select_options() {
- $published_vocs = chado_generate_var('tripal_vocabulary', array('publish' => 1), array('return_array' => 1));
- $options = array();
- foreach ($published_vocs as $voc) {
- $options [$voc->cv_id->cv_id] = $voc->cv_id->name;
- }
- return $options;
- }
- function tripal_entities_get_db_names_for_published_vocabularies() {
- $published_vocs = chado_generate_var('tripal_vocabulary', array('publish' => 1), array('return_array' => 1));
- $db = array();
- foreach ($published_vocs as $voc) {
- $db [$voc->db_id->db_id] = $voc->db_id->name;
- }
- return $db;
- }
- function tripal_entities_get_published_terms_as_select_options($cv_id = NULL) {
- $where = array('publish' => 1);
- $published_terms = chado_generate_var('tripal_term', $where, array('return_array' => 1));
- $options = array();
- foreach ($published_terms as $term) {
- if (!$cv_id) {
- $options [$term->cvterm_id->name] = $term->cvterm_id->name;
- } else {
- if ($term->cvterm_id->cv_id->cv_id == $cv_id) {
- $options [$term->cvterm_id->name] = $term->cvterm_id->name;
- }
- }
- }
- return $options;
- }
- function tripal_bundle_load($bundle_type, $reset = FALSE) {
-
- $bundle_types = db_select('tripal_bundle', 'tdt')
- ->fields('tdt', array('id', 'type'))
- ->condition('bundle', $bundle_type)
- ->execute()
- ->fetchObject();
-
-
- $entity = entity_load($bundle_types->type . '_bundle', array($bundle_types->id), array(), $reset);
- return reset($entity);
- }
- function tripal_entity_load($id, $reset = FALSE) {
-
- $entity_type = db_select('tripal_entity', 'td')
- ->fields('td', array('type'))
- ->condition('id', $id)
- ->execute()
- ->fetchField();
-
- if ($entity_type) {
- $entity = entity_load($entity_type, array($id), array(), $reset);
- return reset($entity);
- }
- return FALSE;
- }
- function tripal_entities_form_alter(&$form, &$form_state, $form_id) {
- switch ($form_id) {
- case 'field_ui_field_edit_form':
-
-
-
- $dbs = tripal_entities_get_db_names_for_published_vocabularies ();
- if (in_array($form['#instance']['entity_type'], $dbs)) {
- $form['field']['cardinality']['#access'] = FALSE;
- $form['instance']['required']['#access'] = FALSE;
- }
- break;
- }
- }
|