You are here

public static function HudtInternal::getStorageVars in Hook Update Deploy Tools 8

Same name and namespace in other branches
  1. 7 src/HudtInternal.php \HookUpdateDeployTools\HudtInternal::getStorageVars()

Defines the array that connects import type to drupal variable.

Return value

array Keyed by import type => drupal variable containing feature name.

2 calls to HudtInternal::getStorageVars()
hook_update_deploy_tools_uninstall in ./hook_update_deploy_tools.install
Implements hook_uninstall().
HudtInternal::getStoragePath in src/HudtInternal.php
Gets the path for where import files are stored for a given storage type.

File

src/HudtInternal.php, line 192

Class

HudtInternal
Methods for processes internal to Hook Deploy Update Tools.

Namespace

HookUpdateDeployTools

Code

public static function getStorageVars() {
  $storage_map = array(
    'default' => 'hook_update_deploy_tools_deploy_module',
    'menu' => 'hook_update_deploy_tools_menu_feature',
    'node' => 'hook_update_deploy_tools_node_feature',
    'page_manager' => 'hook_update_deploy_tools_page_manager_feature',
    'redirect' => 'hook_update_deploy_tools_redirect_feature',
    'rules' => 'hook_update_deploy_tools_rules_feature',
  );
  return $storage_map;
}