image_fupload_imagefield.module in Image FUpload 6.2
Same filename and directory in other branches
File
image_fupload_imagefield/image_fupload_imagefield.moduleView 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
Name | 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(). |