TRUE)); } } /** * Implementation of hook_requirements(). * * @ingroup tripal_cv */ function tripal_cv_requirements($phase) { $requirements = array(); if ($phase == 'install') { // make sure chado is installed if (!$GLOBALS["chado_is_installed"]) { $requirements ['tripal_cv'] = array( 'title' => "tripal_cv", 'value' => "ERROR: Chado must be installed before this module can be enabled", 'severity' => REQUIREMENT_ERROR, ); } } return $requirements; } /** * Implementation of hook_install(). * * @ingroup tripal_cv */ function tripal_cv_install() { } /** * Implementation of hook_uninstall(). * * @ingroup tripal_cv */ function tripal_cv_uninstall() { }