function pm_pm_recommended_modules_info in Drupal PM (Project Management) 8
Same name and namespace in other branches
- 7.3 includes/pm.recommended.inc \pm_pm_recommended_modules_info()
Implements hook_pm_recommended_modules_info().
File
- includes/
pm.recommended.inc, line 125 - Recommended modules helper functions.
Code
function pm_pm_recommended_modules_info() {
return array(
'field_group' => array(
'name' => 'Field Group',
'functionality' => t('Allows fields to be structured into labelled groups. This module is pre-configured by Project Management to work "out of the box", although the configuration can also be customised.'),
'download' => 'https://www.drupal.org/project/field_group',
),
'fontawesome' => array(
'name' => 'Font Awesome',
'functionality' => t('Replaces the included legacy icons with modern icons in the Bootstrap style. This gives an opportunity to harmonize styles across the site.'),
'download' => 'https://www.drupal.org/project/fontawesome',
),
);
}