You are here

function spaces_design_theme in Spaces 6.2

Implementation of hook_theme().

File

spaces_design/spaces_design.module, line 6

Code

function spaces_design_theme($existing, $type, $theme, $path) {
  return array(
    'spaces_design_logo' => array(),
    'spaces_design_colorpicker' => array(),
    'spaces_design' => array(
      'template' => 'spaces-design',
      'arguments' => array(
        'color' => NULL,
      ),
    ),
  );
}