You are here

function boxes_spaces_registry in Boxes 7

Same name and namespace in other branches
  1. 6 boxes.module \boxes_spaces_registry()

Implements hook_spaces_registry().

File

./boxes.module, line 693
Core functionality for boxes module.

Code

function boxes_spaces_registry() {
  return array(
    'controllers' => array(
      'boxes' => array(
        'title' => t('Boxes'),
        'plugin' => 'spaces_controller_boxes',
      ),
    ),
  );
}