You are here

function pm_recommended_modules_problem in Drupal PM (Project Management) 7.3

Same name and namespace in other branches
  1. 8 includes/pm.recommended.inc \pm_recommended_modules_problem()

Determines whether any recommended modules are missing or disabled.

1 call to pm_recommended_modules_problem()
pm_admin_settings in includes/pm.settings.inc
Defines the administration settings form.

File

includes/pm.recommended.inc, line 67
Recommended modules helper functions.

Code

function pm_recommended_modules_problem() {
  $counts = pm_recommended_modules_count();
  if ($counts['missing'] > 0 || $counts['disabled'] > 0) {
    return TRUE;
  }
  return FALSE;
}