You are here

function acsf_theme_acsf_registry in Acquia Cloud Site Factory Connector 8

Same name and namespace in other branches
  1. 8.2 acsf_theme/acsf_theme.module \acsf_theme_acsf_registry()

Implements hook_acsf_registry().

File

acsf_theme/acsf_theme.module, line 34
Manages VCS-based themes on Acquia Cloud Site Factory.

Code

function acsf_theme_acsf_registry() {
  return [
    'events' => [
      [
        'type' => 'site_duplication_scrub',
        'class' => '\\Drupal\\acsf\\Event\\AcsfThemeDuplicationScrubbingHandler',
        'weight' => 0,
      ],
    ],
  ];
}