function drush_warden_show_module_data in Warden 8
Same name and namespace in other branches
- 8.2 warden.drush.inc \drush_warden_show_module_data()
- 7 warden.drush.inc \drush_warden_show_module_data()
- 3.x warden.drush.inc \drush_warden_show_module_data()
Prints out the details of the data that the will be reported to Warden.
This shows the module name and version data that will be reported.
File
- ./
warden.drush.inc, line 78 - Drush integration with the Warden module.
Code
function drush_warden_show_module_data() {
module_load_include('inc', 'warden', 'warden.page');
$data = _warden_get_manager()
->generateSiteData();
drush_print_r($data);
}