You are here

function drupal_commons_config_tidy_node_links in Drupal Commons 6.2

Configure tidy node links

1 string reference to 'drupal_commons_config_tidy_node_links'
drupal_commons_profile_tasks in ./drupal_commons.profile
Perform any final installation tasks for this profile.

File

./drupal_commons.profile, line 470

Code

function drupal_commons_config_tidy_node_links() {
  $theme = variable_get('theme_default', 'garland');
  if ($theme == 'commons_origins') {
    drupal_install_modules(array(
      'tidy_node_links',
    ));
  }
}