You are here

interface FeaturesManagerInterface in Features 8.3

Same name and namespace in other branches
  1. 8.4 src/FeaturesManagerInterface.php \Drupal\features\FeaturesManagerInterface

Provides an interface for the FeaturesManager.

Hierarchy

Expanded class hierarchy of FeaturesManagerInterface

All classes that implement FeaturesManagerInterface

14 files declare their use of FeaturesManagerInterface
AssignmentConfigureForm.php in modules/features_ui/src/Form/AssignmentConfigureForm.php
AssignmentExcludeForm.php in modules/features_ui/src/Form/AssignmentExcludeForm.php
AssignmentFormBase.php in modules/features_ui/src/Form/AssignmentFormBase.php
ConfigurationItemTest.php in tests/src/Unit/ConfigurationItemTest.php
features.drush8.inc in drush/features.drush8.inc
Features module drush integration.

... See full list

File

src/FeaturesManagerInterface.php, line 10

Namespace

Drupal\features
View source
interface FeaturesManagerInterface {

  /**
   * Simple configuration.
   *
   * Core uses system.simple, but since we're using this key in configuration
   * arrays we can't include a period.
   *
   * @see https://www.drupal.org/node/2297311
   */
  const SYSTEM_SIMPLE_CONFIG = 'system_simple';

  /**
   * Constants for package/module status.
   */
  const STATUS_NO_EXPORT = 0;
  const STATUS_UNINSTALLED = 1;
  const STATUS_INSTALLED = 2;
  const STATUS_DEFAULT = self::STATUS_NO_EXPORT;

  /**
   * Constants for package/module state.
   */
  const STATE_DEFAULT = 0;
  const STATE_OVERRIDDEN = 1;

  /**
   * Set the app.root.
   *
   * Should only be used by tests.
   *
   * @param string $root
   *   The root.
   */
  public function setRoot($root);

  /**
   * Returns the active config store.
   *
   * @return \Drupal\Core\Config\StorageInterface
   */
  public function getActiveStorage();

  /**
   * Returns a set of config storages.
   *
   * This method is used for support of multiple extension configuration
   * directories, including the core-provided install and optional directories.
   *
   * @return \Drupal\Core\Config\StorageInterface[]
   */
  public function getExtensionStorages();

  /**
   * Resets packages and configuration assignment.
   */
  public function reset();

  /**
   * Gets an array of site configuration.
   *
   * @param bool $reset
   *   If TRUE, recalculate the configuration (undo all assignment methods).
   *
   * @return \Drupal\features\ConfigurationItem[]
   *   An array of items, each with the following keys:
   *   - 'name': prefixed configuration item name.
   *   - 'name_short': configuration item name without prefix.
   *   - 'label': human readable name of configuration item.
   *   - 'type': type of configuration.
   *   - 'data': the contents of the configuration item in exported format.
   *   - 'dependents': array of names of dependent configuration items.
   *   - 'subdirectory': feature subdirectory to export item to.
   *   - 'package': machine name of a package the configuration is assigned to.
   *   - 'extension_provided': whether the configuration is provided by an
   *     extension.
   *   - 'package_excluded': array of package names that this item should be
   *     excluded from.
   */
  public function getConfigCollection($reset = FALSE);

  /**
   * Sets an array of site configuration.
   *
   * @param \Drupal\features\ConfigurationItem[] $config_collection
   *   An array of items.
   */
  public function setConfigCollection(array $config_collection);

  /**
   * Gets an array of packages.
   *
   * @return \Drupal\features\Package[]
   *   An array of items, each with the following keys:
   *   - 'machine_name': machine name of the package such as 'example_article'.
   *     'article'.
   *   - 'name': human readable name of the package such as 'Example Article'.
   *   - 'description': description of the package.
   *   - 'type': type of Drupal project ('module').
   *   - 'coreVersionRequirement': Drupal core compatibility ('^8.9 | ^9').
   *   - 'dependencies': array of module dependencies.
   *   - 'themes': array of names of themes to install.
   *   - 'config': array of names of configuration items.
   *   - 'status': status of the package. Valid values are:
   *      - FeaturesManagerInterface::STATUS_NO_EXPORT
   *      - FeaturesManagerInterface::STATUS_INSTALLED
   *      - FeaturesManagerInterface::STATUS_UNINSTALLED
   *   - 'version': version of the extension.
   *   - 'state': state of the extension. Valid values are:
   *      - FeaturesManagerInterface::STATE_DEFAULT
   *      - FeaturesManagerInterface::STATE_OVERRIDDEN
   *   - 'directory': the extension's directory.
   *   - 'files' array of files, each having the following keys:
   *      - 'filename': the name of the file.
   *      - 'subdirectory': any subdirectory of the file within the extension
   *         directory.
   *      - 'string': the contents of the file.
   *   - 'bundle': name of the features bundle this package belongs to.
   *   - 'extension': \Drupal\Core\Extension\Extension object.
   *   - 'info': the original info array from an existing package.
   *   - 'configInfo': the original config of the module.
   *
   * @see \Drupal\features\FeaturesManagerInterface::setPackages()
   */
  public function getPackages();

  /**
   * Sets an array of packages.
   *
   * @param \Drupal\features\Package[] $packages
   *   An array of packages.
   */
  public function setPackages(array $packages);

  /**
   * Gets a specific package.
   *
   * @param string $machine_name
   *   Full machine name of package.
   *
   * @return \Drupal\features\Package
   *   Package data.
   *
   * @see \Drupal\features\FeaturesManagerInterface::getPackages()
   */
  public function getPackage($machine_name);

  /**
   * Gets a specific package.
   * Similar to getPackage but will also match package FullName.
   *
   * @param string $machine_name
   *   Full machine name of package.
   *
   * @return \Drupal\features\Package
   *   Package data.
   *
   * @see \Drupal\features\FeaturesManagerInterface::getPackages()
   */
  public function findPackage($machine_name);

  /**
   * Updates a package definition in the package list.
   *
   * NOTE: This does not "export" the package; it simply updates the internal
   * data.
   *
   * @param \Drupal\features\Package $package
   *   The package.
   */
  public function setPackage(Package $package);

  /**
   * Load a specific package.
   *
   * Similar to getPackage but can also load modules that are not Features.
   *
   * @param string $module_name
   *   Full machine name of module.
   * @param bool $any
   *   If TRUE then check for any module, not just a Features module.
   *
   * @return \Drupal\features\Package
   *   Package data.
   */
  public function loadPackage($module_name, $any = FALSE);

  /**
   * Filters the supplied package list by the given namespace.
   *
   * @param \Drupal\features\Package[] $packages
   *   An array of packages.
   * @param string $namespace
   *   The namespace to use.
   * @param bool $only_exported
   *   If true, only filter out packages that are exported.
   *
   * @return \Drupal\features\Package[]
   *   An array of packages.
   */
  public function filterPackages(array $packages, $namespace = '', $only_exported = FALSE);

  /**
   * Gets a reference to a package assigner.
   *
   * @return \Drupal\features\FeaturesAssignerInterface
   *   The package assigner.
   */
  public function getAssigner();

  /**
   * Injects the package assigner.
   *
   * @param \Drupal\features\FeaturesAssignerInterface $assigner
   *   The package assigner.
   */
  public function setAssigner(FeaturesAssignerInterface $assigner);

  /**
   * Gets a reference to a package generator.
   *
   * @return \Drupal\features\FeaturesGeneratorInterface
   *   The package generator.
   */
  public function getGenerator();

  /**
   * Injects the package generator.
   *
   * @param \Drupal\features\FeaturesGeneratorInterface $generator
   *   The package generator.
   */
  public function setGenerator(FeaturesGeneratorInterface $generator);

  /**
   * Returns the current export settings.
   *
   * @return array
   *   An array with the following keys:
   *   - 'folder' - subdirectory to export packages to.
   *   - 'namespace' - module namespace being exported.
   */
  public function getExportSettings();

  /**
   * Returns the current general features settings.
   *
   * @return \Drupal\Core\Config\Config
   *   A config object containing settings.
   */
  public function getSettings();

  /**
   * Returns the contents of an extensions info.yml file.
   *
   * @param \Drupal\Core\Extension\Extension $extension
   *   An Extension object.
   *
   * @return array
   *   An array representing data in an info.yml file.
   */
  public function getExtensionInfo(Extension $extension);

  /**
   * Determine if extension is enabled.
   *
   * @param \Drupal\Core\Extension\Extension $extension
   *   The extension.
   *
   * @return bool
   */
  public function extensionEnabled(Extension $extension);

  /**
   * Initializes a configuration package.
   *
   * @param string $machine_name
   *   Machine name of the package.
   * @param string $name
   *   (optional) Human readable name of the package.
   * @param string $description
   *   (optional) Description of the package.
   * @param string $type
   *   (optional) Type of project.
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   (optional) Bundle to use to add profile directories to the scan.
   * @param \Drupal\Core\Extension\Extension $extension
   *   (optional) An Extension object.
   *
   * @return \Drupal\features\Package
   *   The created package array.
   */
  public function initPackage($machine_name, $name = NULL, $description = '', $type = 'module', FeaturesBundleInterface $bundle = NULL, Extension $extension = NULL);

  /**
   * Initializes a configuration package using module info data.
   *
   * @param \Drupal\Core\Extension\Extension $extension
   *   An Extension object.
   *
   * @return \Drupal\features\Package
   *   The created package array.
   */
  public function initPackageFromExtension(Extension $extension);

  /**
   * Lists directories in which packages are present.
   *
   * This method scans to find package modules whether or not they are
   * currently active (installed). As well as the directories that are
   * usually scanned for modules and profiles, a profile directory for the
   * current profile is scanned if it exists. For example, if the value
   * for $bundle->getProfileName() is 'example', a
   * directory profiles/example will be scanned if it exists. Therefore, when
   * regenerating package modules, existing ones from a prior export will be
   * recognized.
   *
   * @param string[] $machine_names
   *   Package machine names to return directories for. If omitted, return all
   *   directories.
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   Optional bundle to use to add profile directories to the scan.
   *
   * @return array
   *   Array of package directories keyed by package machine name.
   */
  public function listPackageDirectories(array $machine_names = [], FeaturesBundleInterface $bundle = NULL);

  /**
   * Assigns a set of configuration items to a given package or profile.
   *
   * @param string $package_name
   *   Machine name of a package or the profile.
   * @param string[] $item_names
   *   Configuration item names.
   * @param bool $force
   *   (optional) If TRUE, assign config regardless of restrictions such as it
   *   being already assigned to a package.
   *
   * @throws Exception
   */
  public function assignConfigPackage($package_name, array $item_names, $force = FALSE);

  /**
   * Assigns configuration items with names matching given strings to given
   * packages.
   *
   * @param array $patterns
   *   Array with string patterns as keys and package machine names as values.
   */
  public function assignConfigByPattern(array $patterns);

  /**
   * For given configuration items, assigns any dependent configuration to the
   * same package.
   *
   * @param string[] $item_names
   *   Configuration item names.
   * @param string $package
   *   Short machine name of package to assign dependent config to. If NULL,
   *   use the current package of the parent config items.
   */
  public function assignConfigDependents(array $item_names = NULL, $package = NULL);

  /**
   * Adds the optional bundle prefix to package machine names.
   *
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   The bundle used for the generation.
   * @param string[] &$package_names
   *   (optional) Array of package names, passed by reference.
   */
  public function setPackageBundleNames(FeaturesBundleInterface $bundle, array &$package_names = []);

  /**
   * Assigns dependencies from config items into the package.
   *
   * @param \Drupal\features\Package[] $package
   *   An array of packages. NULL for all packages.
   */
  public function assignPackageDependencies(Package $package = NULL);

  /**
   * Assigns dependencies between packages based on configuration dependencies.
   *
   * \Drupal\features\FeaturesBundleInterface::setPackageBundleNames() must be
   * called prior to calling this method.
   *
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   A features bundle.
   * @param \Drupal\features\Package[] $packages
   *   An array of packages.
   */
  public function assignInterPackageDependencies(FeaturesBundleInterface $bundle, array &$packages);

  /**
   * Merges two info arrays and processes the resulting array.
   *
   * Ensures values are unique and sorted.
   *
   * @param array $info1
   *   The first array.
   * @param array $info2
   *   The second array.
   * @param string[] $keys
   *   Keys to merge. If not specified, all keys present will be merged.
   *
   * @return array
   *   An array with the merged and processed results.
   *
   * @fixme Should this be moved to the package object or a related helper?
   */
  public function mergeInfoArray(array $info1, array $info2, array $keys = []);

  /**
   * Lists the types of configuration available on the site.
   *
   * @param bool $bundles_only
   *   Whether to list only configuration types that provide bundles.
   *
   * @return array
   *   An array with machine name keys and human readable values.
   */
  public function listConfigTypes($bundles_only = FALSE);

  /**
   * Lists stored configuration for a given configuration type.
   *
   * @param string $config_type
   *   The type of configuration.
   */
  public function listConfigByType($config_type);

  /**
   * Returns a list of all modules present on the site's file system.
   *
   * @return Drupal\Core\Extension\Extension[]
   *   An array of extension objects.
   */
  public function getAllModules();

  /**
   * Returns a list of Features modules regardless of if they are installed.
   *
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   Optional bundle to filter module list.
   *   If given, only modules matching the bundle namespace will be returned.
   *   If the bundle uses a profile, only modules in the profile will be
   *   returned.
   * @param bool $installed
   *   List only installed modules.
   *
   * @return Drupal\Core\Extension\Extension[]
   *   An array of extension objects.
   */
  public function getFeaturesModules(FeaturesBundleInterface $bundle = NULL, $installed = FALSE);

  /**
   * Lists names of configuration objects provided by a given extension.
   *
   * @param \Drupal\Core\Extension\Extension $extension
   *   An Extension object.
   *
   * @return array
   *   An array of configuration object names.
   */
  public function listExtensionConfig(Extension $extension);

  /**
   * Lists names of configuration items provided by existing Features modules.
   *
   * @param bool $installed
   *   List only installed Features.
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   (optional) Bundle to find existing configuration for.
   *
   * @return array
   *   An array with config names as keys and providing module names as values.
   */
  public function listExistingConfig($installed = FALSE, FeaturesBundleInterface $bundle = NULL);

  /**
   * Iterates through packages and prepares file names and contents.
   *
   * @param array $packages
   *   An array of packages.
   */
  public function prepareFiles(array $packages);

  /**
   * Returns the full name of a config item.
   *
   * @param string $type
   *   The config type, or '' to indicate $name is already prefixed.
   * @param string $name
   *   The config name, without prefix.
   *
   * @return string
   *   The config item's full name.
   */
  public function getFullName($type, $name);

  /**
   * Returns the short name and type of a full config name.
   *
   * @param string $fullname
   *   The full configuration name.
   *
   * @return array
   *   'type' => string the config type
   *   'name_short' => string the short config name, without prefix.
   */
  public function getConfigType($fullname);

  /**
   * Returns the full machine name and directory for exporting a package.
   *
   * @param \Drupal\features\Package $package
   *   The package.
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   Optional bundle being used for export.
   *
   * @return array
   *   An array with the full name as the first item and directory as second
   *   item.
   */
  public function getExportInfo(Package $package, FeaturesBundleInterface $bundle = NULL);

  /**
   * Determines if the module is a Features package, optionally testing by
   * bundle.
   *
   * @param \Drupal\Core\Extension\Extension $module
   *   An extension object.
   * @param \Drupal\features\FeaturesBundleInterface $bundle
   *   (optional) Bundle to filter by.
   *
   * @return bool
   *   TRUE if the given module is a Features package of the given bundle (if any).
   */
  public function isFeatureModule(Extension $module, FeaturesBundleInterface $bundle);

  /**
   * Determines which config is overridden in a package.
   *
   * @param \Drupal\features\Package $feature
   *   The package array.
   *   The 'state' property is updated if overrides are detected.
   * @param bool $include_new
   *   If set, include newly detected config not yet exported.
   *
   * @result array $different
   *   The array of config items that are overridden.
   *
   * @see \Drupal\features\FeaturesManagerInterface::detectNew()
   */
  public function detectOverrides(Package $feature, $include_new = FALSE);

  /**
   * Determines which config has not been exported to the feature.
   *
   * Typically added as an auto-detected dependency.
   *
   * @param \Drupal\features\Package $feature
   *   The package array.
   *
   * @return array
   *   The array of config items that are overridden.
   */
  public function detectNew(Package $feature);

  /**
   * Determines which config is exported in the feature but not in the active.
   *
   * @param \Drupal\features\Package $feature
   *   The package array.
   *
   * @return array
   *   The array of config items that are missing from active store.
   */
  public function detectMissing(Package $feature);

  /**
   * Sort the Missing config into order by dependencies.
   *
   * @param array $missing
   *   config items.
   *
   * @return array of config items in dependency order
   */
  public function reorderMissing(array $missing);

  /**
   * Helper function that returns a translatable label for the different status
   * constants.
   *
   * @param int $status
   *   A status constant.
   *
   * @return string
   *   A translatable label.
   */
  public function statusLabel($status);

  /**
   * Helper function that returns a translatable label for the different state
   * constants.
   *
   * @param int $state
   *   A state constant.
   *
   * @return string
   *   A translatable label.
   */
  public function stateLabel($state);

  /**
   * @param \Drupal\Core\Extension\Extension $extension
   *
   * @return array
   */
  public function getFeaturesInfo(Extension $extension);

  /**
   * Creates configuration in a collection based on the provided list.
   *
   * @param array $config_to_create
   *   An array of configuration data to create, keyed by name.
   *
   * @return array of config imported
   *   'new': list of new config created keyed by name.
   *   'updated': list of updated config keyed by name.
   */
  public function createConfiguration(array $config_to_create);

  /**
   * The import function.
   *
   * @param array $modules
   *   An array of module names to import (revert)
   * @param bool $any
   *   Set to TRUE to import config from non-Features modules.
   * @return array of config imported
   *   keyed by name of module, then:
   *     'new': list of new config created keyed by name.
   *     'updated': list of updated config keyed by name.
   */
  public function import($modules, $any = FALSE);

}

Members

Namesort descending Modifiers Type Description Overrides
FeaturesManagerInterface::assignConfigByPattern public function Assigns configuration items with names matching given strings to given packages. 1
FeaturesManagerInterface::assignConfigDependents public function For given configuration items, assigns any dependent configuration to the same package. 1
FeaturesManagerInterface::assignConfigPackage public function Assigns a set of configuration items to a given package or profile. 1
FeaturesManagerInterface::assignInterPackageDependencies public function Assigns dependencies between packages based on configuration dependencies. 1
FeaturesManagerInterface::assignPackageDependencies public function Assigns dependencies from config items into the package. 1
FeaturesManagerInterface::createConfiguration public function Creates configuration in a collection based on the provided list. 1
FeaturesManagerInterface::detectMissing public function Determines which config is exported in the feature but not in the active. 1
FeaturesManagerInterface::detectNew public function Determines which config has not been exported to the feature. 1
FeaturesManagerInterface::detectOverrides public function Determines which config is overridden in a package. 1
FeaturesManagerInterface::extensionEnabled public function Determine if extension is enabled. 1
FeaturesManagerInterface::filterPackages public function Filters the supplied package list by the given namespace. 1
FeaturesManagerInterface::findPackage public function Gets a specific package. Similar to getPackage but will also match package FullName. 1
FeaturesManagerInterface::getActiveStorage public function Returns the active config store. 1
FeaturesManagerInterface::getAllModules public function Returns a list of all modules present on the site's file system. 1
FeaturesManagerInterface::getAssigner public function Gets a reference to a package assigner. 1
FeaturesManagerInterface::getConfigCollection public function Gets an array of site configuration. 1
FeaturesManagerInterface::getConfigType public function Returns the short name and type of a full config name. 1
FeaturesManagerInterface::getExportInfo public function Returns the full machine name and directory for exporting a package. 1
FeaturesManagerInterface::getExportSettings public function Returns the current export settings. 1
FeaturesManagerInterface::getExtensionInfo public function Returns the contents of an extensions info.yml file. 1
FeaturesManagerInterface::getExtensionStorages public function Returns a set of config storages. 1
FeaturesManagerInterface::getFeaturesInfo public function 1
FeaturesManagerInterface::getFeaturesModules public function Returns a list of Features modules regardless of if they are installed. 1
FeaturesManagerInterface::getFullName public function Returns the full name of a config item. 1
FeaturesManagerInterface::getGenerator public function Gets a reference to a package generator. 1
FeaturesManagerInterface::getPackage public function Gets a specific package. 1
FeaturesManagerInterface::getPackages public function Gets an array of packages. 1
FeaturesManagerInterface::getSettings public function Returns the current general features settings. 1
FeaturesManagerInterface::import public function The import function. 1
FeaturesManagerInterface::initPackage public function Initializes a configuration package. 1
FeaturesManagerInterface::initPackageFromExtension public function Initializes a configuration package using module info data. 1
FeaturesManagerInterface::isFeatureModule public function Determines if the module is a Features package, optionally testing by bundle. 1
FeaturesManagerInterface::listConfigByType public function Lists stored configuration for a given configuration type. 1
FeaturesManagerInterface::listConfigTypes public function Lists the types of configuration available on the site. 1
FeaturesManagerInterface::listExistingConfig public function Lists names of configuration items provided by existing Features modules. 1
FeaturesManagerInterface::listExtensionConfig public function Lists names of configuration objects provided by a given extension. 1
FeaturesManagerInterface::listPackageDirectories public function Lists directories in which packages are present. 1
FeaturesManagerInterface::loadPackage public function Load a specific package. 1
FeaturesManagerInterface::mergeInfoArray public function Merges two info arrays and processes the resulting array. 1
FeaturesManagerInterface::prepareFiles public function Iterates through packages and prepares file names and contents. 1
FeaturesManagerInterface::reorderMissing public function Sort the Missing config into order by dependencies. 1
FeaturesManagerInterface::reset public function Resets packages and configuration assignment. 1
FeaturesManagerInterface::setAssigner public function Injects the package assigner. 1
FeaturesManagerInterface::setConfigCollection public function Sets an array of site configuration. 1
FeaturesManagerInterface::setGenerator public function Injects the package generator. 1
FeaturesManagerInterface::setPackage public function Updates a package definition in the package list. 1
FeaturesManagerInterface::setPackageBundleNames public function Adds the optional bundle prefix to package machine names. 1
FeaturesManagerInterface::setPackages public function Sets an array of packages. 1
FeaturesManagerInterface::setRoot public function Set the app.root. 1
FeaturesManagerInterface::stateLabel public function Helper function that returns a translatable label for the different state constants. 1
FeaturesManagerInterface::STATE_DEFAULT constant Constants for package/module state.
FeaturesManagerInterface::STATE_OVERRIDDEN constant
FeaturesManagerInterface::statusLabel public function Helper function that returns a translatable label for the different status constants. 1
FeaturesManagerInterface::STATUS_DEFAULT constant
FeaturesManagerInterface::STATUS_INSTALLED constant
FeaturesManagerInterface::STATUS_NO_EXPORT constant Constants for package/module status.
FeaturesManagerInterface::STATUS_UNINSTALLED constant
FeaturesManagerInterface::SYSTEM_SIMPLE_CONFIG constant Simple configuration.