You are here

function mobile_tools_spaces_plugins in Mobile Tools 7.2

Same name and namespace in other branches
  1. 7.3 mobile_tools.module \mobile_tools_spaces_plugins()

Implements hook_spaces_plugins().

File

./mobile_tools.module, line 347
Functionality to ease the creation of mixed device environments.

Code

function mobile_tools_spaces_plugins() {
  $plugins = array();

  // Register the space plugin
  $plugins['space_mobile_tools'] = array(
    'handler' => array(
      'path' => drupal_get_path('module', 'mobile_tools') . '/plugins',
      'file' => 'mobile_tools_spaces.inc',
      'class' => 'space_mobile_tools',
      'parent' => 'space_type_purl',
    ),
  );
  return $plugins;
}