function pm_pm_recommended_modules_info in Drupal PM (Project Management) 7.3
Same name and namespace in other branches
- 8 includes/pm.recommended.inc \pm_pm_recommended_modules_info()
Implements hook_pm_recommended_modules_info().
Projects recommended here should usually also be added to pm.make.
File
- includes/
pm.recommended.inc, line 127 - Recommended modules helper functions.
Code
function pm_pm_recommended_modules_info() {
return array(
'entityreference_prepopulate' => array(
'name' => 'Entity Reference Prepopulate',
'functionality' => t('Prepopulates the parent field when creating Project Management content based on specially crafted links. This module is pre-configured by Project Management to work "out of the box", although custom links can also be crafted to utilise this functionality.'),
'download' => 'https://www.drupal.org/project/entityreference_prepopulate',
),
'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',
),
);
}