You are here

function admin_select_theme in Administration Menu select 6

Same name and namespace in other branches
  1. 7 admin_select.module \admin_select_theme()

Implements hook_theme().

File

./admin_select.module, line 57
Core functionality for Administration Menu select module.

Code

function admin_select_theme() {
  $items = array();
  $items['admin_select_defaults'] = array(
    'arguments' => array(
      'form' => array(),
    ),
  );
  return $items;
}