123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322 |
- <?php
- /**
- * @defgroup tripal_cv Controlled Vocabulary Module
- * @ingroup tripal_modules
- * @{
- * Provides functions for managing chado controlled vocabularies which are used ubiquitously
- * throughout chado.
- * @}
- */
- require_once "includes/charts.inc";
- require_once "includes/trees.inc";
- require_once "includes/obo_loader.inc";
- require_once "api/tripal_cv.api.inc";
- require_once "includes/cv_form.inc";
- require_once "includes/cvterm_form.inc";
- require_once "includes/cvtermpath_form.inc";
- require_once "includes/tripal_cv_admin.inc";
- require_once "api/tripal_cv.schema.api.inc";
- /**
- * Implements hook_init().
- * Adds CSS and JS needed for this modules rendered content
- *
- * @ingroup tripal_cv
- */
- function tripal_cv_init() {
- // add the tripal_cv JS and CSS
- drupal_add_css(drupal_get_path('module', 'tripal_cv') . '/theme/css/tripal_cv.css');
- drupal_add_js(drupal_get_path('module', 'tripal_cv') . '/theme/js/tripal_cv.js');
- // add the jgCharts.js
- drupal_add_js(drupal_get_path('module', 'tripal_cv') . '/theme/js/jgcharts/jgcharts.js');
- // add the jsTree JS and CSS
- drupal_add_css(drupal_get_path('module', 'tripal_cv') . '/theme/js/jsTree/source/tree_component.css');
- drupal_add_js(drupal_get_path('module', 'tripal_cv') . '/theme/js/jsTree/source/_lib.js');
- drupal_add_js(drupal_get_path('module', 'tripal_cv') . '/theme/js/jsTree/source/tree_component.js');
- }
- /**
- * Implements hook_menu().
- * Registers all menu items associated with this module
- *
- * @ingroup tripal_cv
- */
- function tripal_cv_menu() {
- $items = array();
- $items['admin/tripal/chado/tripal_cv'] = array(
- 'title' => 'Controlled Vocabularies',
- 'description' => 'Controlled Vocabularies control the terms available for various chado fields.',
- 'page callback' => 'tripal_cv_admin_cv_listing',
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_NORMAL_ITEM,
- );
- $items['admin/tripal/chado/tripal_cv/help'] = array(
- 'title' => 'Help',
- 'description' => "A description of the Tripal Controlled Vocabulary module including a short description of it's usage.",
- 'page callback' => 'theme',
- 'page arguments' => array('tripal_cv_admin'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_LOCAL_TASK,
- 'weight' => 10
- );
- // The OBO loader will be available in two places
- $items['admin/tripal/chado/tripal_cv/obo_loader'] = array(
- 'title' => 'Load Ontology',
- 'description' => 'Load an Ontology into chado as a controlled vocabulary.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_obo_form'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/loaders/obo_loader'] = array(
- 'title' => 'Load Ontology',
- 'description' => 'Load an Ontology into chado as a controlled vocabulary.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_obo_form'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_NORMAL_ITEM,
- );
- /*
- * Menu for updating the cvtermpath
- */
- $items['admin/tripal/chado/tripal_cv/cvtermpath'] = array(
- 'title' => 'Update Chado cvtermpath table',
- 'description' => 'The Chado cvtermpath table provides lineage for terms and is useful for quickly finding any ancestor parent of a term. However, this table must be populated. This page allows for populating of this table one vocabulary at a time',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_cvtermpath_form'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- /*
- * Menu items for adding and editing CVs
- */
- $items['admin/tripal/chado/tripal_cv/cv/edit/%'] = array(
- 'title' => 'Edit a Controlled Vocabulary',
- 'description' => 'Edit the details such as name and description for an existing controlled vocabulary.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_cv_edit_form', 6),
- 'access callback' => 'user_access',
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/chado/tripal_cv/cv/add'] = array(
- 'title' => 'Add a Controlled Vocabulary',
- 'description' => 'Manually a new controlled vocabulary.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_cv_add_form'),
- 'access callback' => 'user_access',
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- /*
- * Menu items for adding and editing CVterms
- */
- $items['admin/tripal/chado/tripal_cv/cv/%/cvterm/add'] = array(
- 'title' => 'Add a Controlled Vocabulary Term',
- 'description' => 'Add a new controlled vocabulary term.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_cvterm_add_form',5),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/chado/tripal_cv/cvterm/add'] = array(
- 'title' => 'Add a Controlled Vocabulary Term',
- 'description' => 'Add a new controlled vocabulary term.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_cvterm_add_form'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/chado/tripal_cv/cv/%/cvterm/edit/%'] = array(
- 'title' => 'Edit a Controlled Vocabulary Term',
- 'description' => 'Edit an existing controlled vocabulary term.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_cv_cvterm_edit_form',5,8),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/chado/tripal_cv/cvterm/auto_name/%/%'] = array(
- 'page callback' => 'tripal_cv_cvterm_name_autocomplete',
- 'page arguments' => array(6, 7),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- /*
- * Menu items for enabling views
- */
- $items['admin/tripal/chado/tripal_cv/views/cvs/enable'] = array(
- 'title' => 'Enable Vocabulary Administrative View',
- 'page callback' => 'tripal_views_admin_enable_view',
- 'page arguments' => array('tripal_cv_admin_cvs', 'admin/tripal/chado/tripal_cv'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
- $items['admin/tripal/chado/tripal_cv/views/cvterms/enable'] = array(
- 'title' => 'Enable Vocabulary Terms Administrative View',
- 'page callback' => 'tripal_views_admin_enable_view',
- 'page arguments' => array('tripal_cv_admin_cvterms', 'admin/tripal/chado/tripal_cv'),
- 'access arguments' => array('administer controlled vocabularies'),
- 'type' => MENU_CALLBACK,
- );
-
- /*
- * Charts
- */
- $items['tripal_cv_chart'] = array(
- 'path' => 'tripal_cv_chart',
- 'page callback' => 'tripal_cv_chart',
- 'page arguments' => array(1),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
-
- /*
- * Menu items for working with CV Trees
- */
- $items['cv_browser'] = array(
- 'page callback' => 'tripal_cv_show_browser',
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
- $items['tripal_cv_tree'] = array(
- 'path' => 'tripal_cv_tree',
- 'page callback' => 'tripal_cv_tree',
- 'page arguments' => array(1),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
- $items['tripal_cv_init_browser'] = array(
- 'path' => 'tripal_cv_init_browser',
- 'page callback' => 'tripal_cv_init_browser',
- 'page arguments' => array(1),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
- // menu item for interaction with the tree
- $items['tripal_cv_update_tree'] = array(
- 'path' => 'tripal_cv_update_tree',
- 'page callback' => 'tripal_cv_update_tree',
- 'page arguments' => array(2, 3),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
- // menu items for working with terms
- $items['tripal_cv_cvterm_info'] = array(
- 'path' => 'tripal_cv_cvterm_info',
- 'title' => 'CV Term Viewer',
- 'page callback' => 'tripal_cv_cvterm_info',
- 'page arguments' => array(1),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
- return $items;
- }
- /**
- * Implements hook_help()
- * Purpose: Adds a help page to the module list
- */
- function tripal_cv_help ($path, $arg) {
- if ($path == 'admin/help#tripal_cv') {
- return theme('tripal_cv_help', array());
- }
- }
- /**
- * Set the permission types that the chado module uses. Essentially we
- * want permissionis that protect creation, editing and deleting of chado
- * data objects
- *
- * @ingroup tripal_cv
- */
- function tripal_cv_permission() {
- return array(
- 'administer controlled vocabularies' => array(
- 'title' => t('Administer controlled vocabularies (CVs).'),
- 'description' => t('Allow a user to add, edit and delete controlled vocabularies as well as add and edit terms.')
- ),
- );
- }
- /**
- * Implements hook_views_api()
- * Purpose: Essentially this hook tells drupal that there is views support for
- * for this module which then includes tripal_cv.views.inc where all the
- * views integration code is
- *
- * @ingroup tripal_cv
- */
- function tripal_cv_views_api() {
- return array('api' => 2.0);
- }
- /**
- * Implements hook_coder_ignore().
- * Defines the path to the file (tripal_cv.coder_ignores.txt) where ignore rules for coder are stored
- */
- function tripal_cv_coder_ignore() {
- return array(
- 'path' => drupal_get_path('module', 'tripal_cv'),
- 'line prefix' => drupal_get_path('module', 'tripal_cv'),
- );
- }
- /*
- *
- */
- function tripal_cv_form_alter(&$form, &$form_state, $form_id) {
- if ($form_id == "tripal_cv_cvterm_form") {
- // updating the form through the ahah callback sets the action of
- // the form to the ahah callback URL. We need to set it back
- // to the normal form URL
- if ($form_state['values']['form_action'] == 'edit') {
- $form['#action'] = url("admin/tripal/tripal_cv/cvterm/edit");
- }
- else {
- $form['#action'] = url("admin/tripal/tripal_cv/cvterm/add");
- }
- }
- }
- /**
- * We need to let drupal know about our theme functions and their arguments.
- * We create theme functions to allow users of the module to customize the
- * look and feel of the output generated in this module
- *
- * @ingroup tripal_db
- */
- function tripal_cv_theme($existing, $type, $theme, $path) {
-
- $items = array(
- 'tripal_cv_help' => array(
- 'template' => 'tripal_cv_help',
- 'variables' => array(NULL),
- 'path' => "$path/theme/"
- )
- );
- return $items;
- }
|