Mein Modul hängt von einer PHP-Bibliothek ab (sites / all / library / xyz / xyz-library.php). Ich möchte, dass Drupal die Installation nur fortsetzt, wenn die Bibliotheksanforderungen meines Moduls erfüllt sind.
Ich möchte etwas in dieser Art in meinem mymodule.install
:
function mymodule_install() {
if( library_exists() ) return; //continue with installation
else{
drupal_set_message(t('Installation failed. Please put xyz-library.php in sites/all/libraries/xyz folder.'), 'error');
return FALSE; // installation failed
}
}