You are here

image_fupload_imagefield.module in Image FUpload 6.2

File

image_fupload_imagefield/image_fupload_imagefield.module
View source
<?php

/**
 * Implementation of hook_help
 */
function image_fupload_imagefield_help($path, $arg) {
}

/**
 * Implementation of hook_menu().
 */
function image_fupload_imagefield_menu() {
}

/**
 * Implementation of hook_form_alter() registry.
 **/
function image_fupload_imagefield_form_alter(&$form, $form_state, $form_id) {
  global $user;

  // examine whether it's a new image type & the user wants to have flash
  if ($form_id == "apage_node_form" && !isset($form['#node']->nid) && arg(3) != "noflash" && arg(3) != "list_images" && user_access('mass upload images')) {

    // print_r($form);
  }
}

Functions

Namesort descending Description
image_fupload_imagefield_form_alter Implementation of hook_form_alter() registry.
image_fupload_imagefield_help Implementation of hook_help
image_fupload_imagefield_menu Implementation of hook_menu().