You are here

function module_builder_callback_get_data_dir in Module Builder 6.2

Callback to output the location of the data directory.

1 string reference to 'module_builder_callback_get_data_dir'
module_builder_drush_command in drush/module_builder.drush.inc
Implementation of hook_drush_command().

File

drush/module_builder.drush.inc, line 679
Module builder drush commands.

Code

function module_builder_callback_get_data_dir() {
  drush_print('Module builder data is in ' . _module_builder_get_hooks_directory());
}