You are here

function image_fupload_imagefield_menu in Image FUpload 6.3

Same name and namespace in other branches
  1. 6 image_fupload_imagefield/image_fupload_imagefield.module \image_fupload_imagefield_menu()
  2. 6.2 image_fupload_imagefield/image_fupload_imagefield.module \image_fupload_imagefield_menu()

Implementation of hook_menu().

File

image_fupload_imagefield/image_fupload_imagefield.module, line 17

Code

function image_fupload_imagefield_menu() {
  $items['fupload/js/imagefield'] = array(
    'title' => 'Image FUpload',
    'page callback' => 'image_fupload_imagefield_node_create',
    'access arguments' => array(
      'mass upload images',
    ),
    'type' => MENU_CALLBACK,
    'file' => 'field_file.inc',
    'file path' => drupal_get_path('module', 'filefield'),
  );
  return $items;
}