' . t('About') . ''; $output .= '

' . t('The Features module provides a user interface for exporting bundles of configuration into modules. For more information, see the online documentation for Features module', array( ':url' => 'http://drupal.org/node/2404427', )) . '

'; return $output; } } /** * Implements hook_file_download(). */ function features_file_download($uri) { $scheme = file_uri_scheme($uri); $target = file_uri_target($uri); if ($scheme == 'temporary' && $target) { return array( 'Content-disposition' => 'attachment; filename="' . $target . '"', ); } } /** * Implements hook_modules_installed(). */ function features_modules_installed($modules) { if (!in_array('features', $modules)) { /** @var \Drupal\features\FeaturesAssignerInterface $assigner */ $assigner = \Drupal::service('features_assigner'); $assigner->purgeConfiguration(); } }