You are here

function spaces_spaces_customizers in Spaces 6

Same name and namespace in other branches
  1. 5.2 spaces.module \spaces_spaces_customizers()
  2. 6.2 spaces.module \spaces_spaces_customizers()

Implementation of hook_spaces_customizers().

File

./spaces.module, line 266

Code

function spaces_spaces_customizers() {
  return array(
    'menu' => new space_customizer_menu(),
    'views' => new space_customizer_views(),
    'block' => new space_customizer_block(),
  );
}