| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | <?php/** * @file * Contains functions related to the installation of this module *//** * Implementation of hook_install(). * * @ingroup tripal_db */function tripal_db_install() {  // create the module's data directory  tripal_create_moddir('tripal_db');}/** * Implementation of hook_uninstall(). * * @ingroup tripal_db */function tripal_db_uninstall() {}/** * Implementation of hook_requirements().  */function tripal_db_requirements($phase) {  $requirements = array();  if ($phase == 'install') {    // make sure chado is installed    if (!tripal_core_is_chado_installed()) {      $requirements ['tripal_db'] = array(            'title' => "tripal_db",            'value' => "ERROR: Chado most be installed before this module can be enabled",            'severity' => REQUIREMENT_ERROR,      );    }  }  return $requirements;}
 |