123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 |
- <?php
- /**
- * @file
- * Install the module.
- *
- * Creates the JBrowse Instance content type using the method from
- * http://www.thecarneyeffect.co.uk/creating-custom-content-type-adding-fields-programmatically-drupal-7
- */
- /**
- * Implements hook_install().
- */
- function tripal_jbrowse_install() {
- $t = get_t();
- /**** STEP 1: Create the content type ****/
- // machine name of the content type
- $name = 'jbrowse_instance';
- // define the node type
- $type = array(
- 'type' => $name,
- 'name' => $t('JBrowse Instance'),
- 'base' => 'node_content',
- 'title_label' => $t('Title'),
- 'description' => $t('Integrates an existing JBrowse instance within these nodes.'),
- 'custom' => TRUE,
- );
- // set other node defaults not declared above
- $content_type = node_type_set_defaults($type);
- // add the body field
- node_add_body_field($content_type, $t('JBrowse Description'));
- // save the content type
- node_type_save($content_type);
- // add peristant variables that control settings
- variable_set('additional_settings__active_tab_' . $name, 'edit-menu');
- variable_set('node_preview_' . $name, 2);
- variable_set('node_options_' . $name, array(0 => 'status', 1 => 'promote'));
- variable_set('node_submitted_' . $name, 0);
- variable_set('menu_options_' . $name, array());
- variable_set('menu_parent_' . $name, 'main-menu:0');
- /**** STEP 2: Add Fields ****/
- // create all the fields we are adding to our content type
- foreach (_jbrowse_installed_fields() as $field) {
- field_create_field($field);
- }
- // create all the instances for our fields
- foreach (_jbrowse_installed_instances() as $instance) {
- $instance['entity_type'] = 'node';
- $instance['bundle'] = $type['type'];
- field_create_instance($instance);
- }
- }
- /**
- * Implements hook_uninstall().
- */
- function tripal_jbrowse_uninstall() {
- // machine name of the content type
- $name = 'jbrowse_instance';
- // gather all job nodes created
- $sql = 'SELECT nid FROM {node} n WHERE n.type = :type';
- $result = db_query($sql, array(':type' => $name));
- $nids = array();
- foreach ($result as $row) {
- $nids[] = $row->nid;
- }
- // delete all the job nodes at once
- node_delete_multiple($nids);
- // remove peristant variables that control settings
- variable_del('additional_settings__active_tab_' . $name);
- variable_del('node_preview_' . $name);
- variable_del('node_options_' . $name);
- variable_del('node_submitted_' . $name);
- variable_del('menu_options_' . $name);
- variable_del('menu_parent_' . $name);
- // find all fields and delete them
- foreach (array_keys(_jbrowse_installed_fields()) as $field) {
- field_delete_field($field);
- }
- // find all fields and delete instance
- $instances = field_info_instances('node', $name);
- foreach ($instances as $instance_name => $instance) {
- field_delete_instance($instance);
- }
- // delete our content type
- node_type_delete($name);
- // purge all field infromation
- field_purge_batch(1000);
- }
- /**
- * Defines all the fields needed for the jbrowse_instance content type.
- *
- * @return
- * An associative array specifying the fields we wish to add to our
- * new node type.
- */
- function _jbrowse_installed_fields() {
- return array(
- 'field_jburl' => array(
- 'translatable' => '0',
- 'entity_types' => array(),
- 'settings' => array(
- 'attributes' => array(
- 'target' => 'default',
- 'class' => '',
- 'rel' => '',
- ),
- 'url' => 0,
- 'title' => 'optional',
- 'title_value' => '',
- 'title_maxlength' => 128,
- 'enable_tokens' => 1,
- 'display' => array(
- 'url_cutoff' => 80,
- ),
- ),
- 'storage' => array(
- 'type' => 'field_sql_storage',
- 'settings' => array(),
- 'module' => 'field_sql_storage',
- 'active' => '1',
- 'details' => array(
- 'sql' => array(
- 'FIELD_LOAD_CURRENT' => array(
- 'field_data_field_jburl' => array(
- 'url' => 'field_jburl_url',
- 'title' => 'field_jburl_title',
- 'attributes' => 'field_jburl_attributes',
- ),
- ),
- 'FIELD_LOAD_REVISION' => array(
- 'field_revision_field_jburl' => array(
- 'url' => 'field_jburl_url',
- 'title' => 'field_jburl_title',
- 'attributes' => 'field_jburl_attributes',
- ),
- ),
- ),
- ),
- ),
- 'foreign keys' => array(),
- 'indexes' => array(),
- 'field_name' => 'field_jburl',
- 'type' => 'link_field',
- 'module' => 'link',
- 'active' => '1',
- 'locked' => '0',
- 'cardinality' => '1',
- 'deleted' => '0',
- 'columns' => array(
- 'url' => array(
- 'type' => 'varchar',
- 'length' => 2048,
- 'not null' => FALSE,
- 'sortable' => TRUE,
- ),
- 'title' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => FALSE,
- 'sortable' => TRUE,
- ),
- 'attributes' => array(
- 'type' => 'text',
- 'size' => 'medium',
- 'not null' => FALSE,
- ),
- ),
- 'bundles' => array(
- 'node' => array(
- 'jbrowse_instance',
- ),
- ),
- ),
- 'field_jbloc' => array(
- 'translatable' => '0',
- 'entity_types' => array(),
- 'settings' => array(
- 'max_length' => '255',
- ),
- 'storage' => array(
- 'type' => 'field_sql_storage',
- 'settings' => array(),
- 'module' => 'field_sql_storage',
- 'active' => '1',
- 'details' => array(
- 'sql' => array(
- 'FIELD_LOAD_CURRENT' => array(
- 'field_data_field_jbloc' => array(
- 'value' => 'field_jbloc_value',
- 'format' => 'field_jbloc_format',
- ),
- ),
- 'FIELD_LOAD_REVISION' => array(
- 'field_revision_field_jbloc' => array(
- 'value' => 'field_jbloc_value',
- 'format' => 'field_jbloc_format',
- ),
- ),
- ),
- ),
- ),
- 'foreign keys' => array(
- 'format' => array(
- 'table' => 'filter_format',
- 'columns' => array(
- 'format' => 'format',
- ),
- ),
- ),
- 'indexes' => array(
- 'format' => array(
- 'format',
- ),
- ),
- 'field_name' => 'field_jbloc',
- 'type' => 'text',
- 'module' => 'text',
- 'active' => '1',
- 'locked' => '0',
- 'cardinality' => '1',
- 'deleted' => '0',
- 'columns' => array(
- 'value' => array(
- 'type' => 'varchar',
- 'length' => '255',
- 'not null' => FALSE,
- ),
- 'format' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => FALSE,
- ),
- ),
- 'bundles' => array(
- 'node' => array(
- 'jbrowse_instance',
- ),
- ),
- ),
- 'field_jbtracks' => array(
- 'translatable' => '0',
- 'entity_types' => array(),
- 'settings' => array(),
- 'storage' => array(
- 'type' => 'field_sql_storage',
- 'settings' => array(),
- 'module' => 'field_sql_storage',
- 'active' => '1',
- 'details' => array(
- 'sql' => array(
- 'FIELD_LOAD_CURRENT' => array(
- 'field_data_field_jbtracks' => array(
- 'value' => 'field_jbtracks_value',
- 'format' => 'field_jbtracks_format',
- ),
- ),
- 'FIELD_LOAD_REVISION' => array(
- 'field_revision_field_jbtracks' => array(
- 'value' => 'field_jbtracks_value',
- 'format' => 'field_jbtracks_format',
- ),
- ),
- ),
- ),
- ),
- 'foreign keys' => array(
- 'format' => array(
- 'table' => 'filter_format',
- 'columns' => array(
- 'format' => 'format',
- ),
- ),
- ),
- 'indexes' => array(
- 'format' => array(
- 'format',
- ),
- ),
- 'field_name' => 'field_jbtracks',
- 'type' => 'text_long',
- 'module' => 'text',
- 'active' => '1',
- 'locked' => '0',
- 'cardinality' => '1',
- 'deleted' => '0',
- 'columns' => array(
- 'value' => array(
- 'type' => 'text',
- 'size' => 'big',
- 'not null' => FALSE,
- ),
- 'format' => array(
- 'type' => 'varchar',
- 'length' => 255,
- 'not null' => FALSE,
- ),
- ),
- 'bundles' => array(
- 'node' => array(
- 'jbrowse_instance',
- ),
- ),
- ),
- );
- }
- /**
- * Defines the field instances needed for the jbrowse_instance content type.
- *
- * @return
- * An associative array specifying the instances we wish to add to our new
- * node type.
- */
- function _jbrowse_installed_instances() {
- return array(
- 'field_jburl' => array(
- 'label' => 'Existing JBrowse URL',
- 'widget' => array(
- 'weight' => '1',
- 'type' => 'link_field',
- 'module' => 'link',
- 'active' => 0,
- 'settings' => array(),
- ),
- 'settings' => array(
- 'validate_url' => 1,
- 'url' => 0,
- 'title' => 'none',
- 'title_value' => '',
- 'title_maxlength' => '128',
- 'enable_tokens' => 0,
- 'display' => array(
- 'url_cutoff' => '',
- ),
- 'attributes' => array(
- 'target' => '_blank',
- 'rel' => '',
- 'class' => '',
- 'configurable_title' => 0,
- 'title' => '',
- ),
- 'rel_remove' => 'default',
- 'user_register_form' => FALSE,
- ),
- 'display' => array(
- 'default' => array(
- 'label' => 'above',
- 'type' => 'link_default',
- 'settings' => array(),
- 'module' => 'link',
- 'weight' => 3,
- ),
- 'teaser' => array(
- 'type' => 'hidden',
- 'label' => 'above',
- 'settings' => array(),
- 'weight' => 0,
- ),
- ),
- 'required' => 1,
- 'description' => 'The URL for the existing JBrowse you wish to integrate into this page. This URL should not include any query parameters.',
- 'default_value' => NULL,
- 'field_name' => 'field_jburl',
- 'entity_type' => 'node',
- 'bundle' => 'jbrowse_instance',
- 'deleted' => '0',
- ),
- 'field_jbloc' => array(
- 'label' => 'Start Location',
- 'widget' => array(
- 'weight' => '3',
- 'type' => 'text_textfield',
- 'module' => 'text',
- 'active' => 1,
- 'settings' => array(
- 'size' => '60',
- ),
- ),
- 'settings' => array(
- 'text_processing' => '0',
- 'user_register_form' => FALSE,
- ),
- 'display' => array(
- 'default' => array(
- 'label' => 'above',
- 'type' => 'text_default',
- 'settings' => array(),
- 'module' => 'text',
- 'weight' => 1,
- ),
- 'teaser' => array(
- 'type' => 'hidden',
- 'label' => 'above',
- 'settings' => array(),
- 'weight' => 0,
- ),
- ),
- 'required' => 0,
- 'description' => "<p>The initial genomic position which will be visible in the viewing field. Possible input strings are:</p>\r\n<strong>\"Chromosome\"+\":\"+ start point + \"..\" + end point</strong>\r\n<p>A chromosome name/ID followed by “:”, starting position, “..” and end position of the genome to be viewed in the browser is used as an input. Chromosome ID can be either a string or a mix of string and numbers. “CHR” to indicate chromosome may or may not be used. Strings are not case-sensitive. If the chromosome ID is found in the database reference sequence (RefSeq), the chromosome will be shown from the starting position to the end position given in URL.</p>\r\n<pre> ctgA:100..200</pre>\r\n<p>Chromosome ctgA will be displayed from position 100 to 200.</p>\r\nOR <strong>start point + \"..\" + end point</strong>\r\n<p>A string of numerical value, “..” and another numerical value is given with the loc option. JBrowse navigates through the currently selected chromosome from the first numerical value, start point, to the second numerical value, end point.</p>\r\n<pre> 200..600</pre>\r\n<p>Displays position 200 to 600 of the current chromosome.</p>\r\nOR <strong>center base</strong>\r\n<p>If only one numerical value is given as an input, JBrowse treats the input as the center position. Then an arbitrary region of the currently selected gene is displayed in the viewing field with the given input position as basepair position on which to center the view.</p>\r\nOR <strong>feature name/ID</strong>\r\n<p>If a string or a mix of string and numbers are entered as an input, JBrowse treats the input as a feature name/ID of a gene. If the ID exists in the database RefSeq, JBrowser displays an arbitrary region of the feature from the the position 0, starting position of the gene, to a certain end point.</p>\r\n<pre> ctgA</pre>\r\n<p>Displays an arbitrary region from the ctgA reference.</p>",
- 'default_value' => NULL,
- 'field_name' => 'field_jbloc',
- 'entity_type' => 'node',
- 'bundle' => 'jbrowse_instance',
- 'deleted' => '0',
- ),
- 'field_jbtracks' => array(
- 'label' => 'Tracks to Display',
- 'widget' => array(
- 'weight' => '4',
- 'type' => 'text_textarea',
- 'module' => 'text',
- 'active' => 1,
- 'settings' => array(
- 'rows' => '2',
- ),
- ),
- 'settings' => array(
- 'text_processing' => '0',
- 'user_register_form' => FALSE,
- ),
- 'display' => array(
- 'default' => array(
- 'label' => 'above',
- 'type' => 'text_default',
- 'settings' => array(),
- 'module' => 'text',
- 'weight' => 2,
- ),
- 'teaser' => array(
- 'type' => 'hidden',
- 'label' => 'above',
- 'settings' => array(),
- 'weight' => 0,
- ),
- ),
- 'required' => 0,
- 'description' => "<p>A comma-delimited strings containing track names, each of which should correspond to the \"label\" element of the track information dictionaries that are currently viewed in the viewing field.</p>\r\n<pre> DNA,knownGene,ccdsGene,snp131,pgWatson,simpleRepeat</pre>",
- 'default_value' => NULL,
- 'field_name' => 'field_jbtracks',
- 'entity_type' => 'node',
- 'bundle' => 'jbrowse_instance',
- 'deleted' => '0',
- ),
- );
- }
|