You are here

function drush_warden_show_module_data in Warden 7

Same name and namespace in other branches
  1. 8.2 warden.drush.inc \drush_warden_show_module_data()
  2. 8 warden.drush.inc \drush_warden_show_module_data()
  3. 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 65
Drush integration with the Warden module.

Code

function drush_warden_show_module_data() {
  module_load_include('inc', 'warden', 'warden.page');
  $data = _warden_generate_site_data();
  drush_print_r($data);
}