You are here

function colorpicker_example_menu in Colorpicker 6

Same name and namespace in other branches
  1. 5 examples/colorpicker_example.module \colorpicker_example_menu()
  2. 6.2 examples/colorpicker_example.module \colorpicker_example_menu()

File

examples/colorpicker_example.module, line 12
Example of a form that uses the colorpicker fields

Code

function colorpicker_example_menu() {
  $items['colorpicker/example'] = array(
    'title' => 'Color Picker Example',
    'description' => 'An example of the color picker in use.',
    'page callback' => 'colorpicker_example_callback',
    'access arguments' => array(
      'access colorpicker example',
    ),
  );
  return $items;
}