You are here

function language_selection_page_theme in Language Selection Page 7

Same name and namespace in other branches
  1. 8.2 language_selection_page.module \language_selection_page_theme()
  2. 6 language_selection_page.module \language_selection_page_theme()
  3. 7.2 language_selection_page.module \language_selection_page_theme()

Implements hook_theme().

File

./language_selection_page.module, line 154

Code

function language_selection_page_theme() {
  return array(
    'language_selection_page_body' => array(
      'variables' => array(
        'language_selection_page' => array(),
      ),
      'path' => drupal_get_path('module', 'language_selection_page') . '/themes',
      'template' => 'language-selection-page-body',
    ),
  );
}