function fupload_list_images_image in Image FUpload 6.3
1 string reference to 'fupload_list_images_image'
- image_fupload_menu in ./
image_fupload.module - Implementation of hook_menu().
File
- includes/
images.previewlist.image.inc, line 10
Code
function fupload_list_images_image(&$form_state, $node_type) {
global $user;
$count = 0;
$node_type = str_replace("-", "_", $node_type);
$image_node_types = variable_get('image_node_types', array());
$type = node_get_types('type', $node_type);
$field_name = $image_node_types[$node_type]['fieldname'];
$field_settings = variable_get('fupload_previewlist_field_settings', array(
'title' => 'Title',
'body' => 'Body',
));
$result = db_query("SELECT nid, title FROM {node} WHERE type = '%s' AND uid = %d AND status = '0' AND created > %d", $node_type, $user->uid, time() - 86400);
// only entries which are one day or newer
while ($node = db_fetch_object($result)) {
$count += 1;
// Get all node infos, also image paths
$node_image = node_load($node->nid);
// only use this image node if it was produced by image_fupload
if ($node_image->body == image_fupload_image_status($field_name, IMAGE_NOT_COMPLETED)) {
$image_nodes[] = $node_image->nid;
$form[$node_image->nid] = array(
'#type' => 'fieldset',
'#title' => t('Image @count', array(
'@count' => $count,
)),
'#collapsible' => FALSE,
'#collapsed' => FALSE,
);
$form[$node_image->nid]['preview_image'] = array(
'#prefix' => '<div class="image_fupload_preview">',
'#value' => _fupload_imagepreview($node_image, $node_type),
'#suffix' => '</div>',
'#weight' => 1,
);
$form[$node_image->nid]['title_' . $node_image->nid] = array(
'#type' => 'textfield',
'#title' => check_plain($type->title_label),
'#default_value' => isset($form_state['values']['title_' . $node_image->nid]) ? $form_state['values']['title_' . $node_image->nid] : $node_image->title,
'#size' => 60,
'#required' => $field_settings['title'],
// disabled fields don't send any data via form_state [#227966] =/
'#disabled' => !$field_settings['title'],
'#weight' => 3,
);
if ($type->has_body) {
$form[$node_image->nid]['body_' . $node_image->nid] = array(
'#type' => 'textarea',
'#title' => check_plain($type->body_label),
'#default_value' => isset($form_state['values']['body_' . $node_image->nid]) ? $form_state['values']['body_' . $node_image->nid] : '',
'#rows' => 5,
//'#required' => ($type->min_word_count > 0),
// will be checked later via validation hook
'#disabled' => !$field_settings['body'],
'#weight' => 5,
);
$form[$node_image->nid]['format_' . $node_image->nid] = filter_form($node_image->format, NULL, array(
'format_' . $node_image->nid,
));
$form[$node_image->nid]['format_' . $node_image->nid]['#weight'] = 6;
}
}
}
if (!empty($image_nodes)) {
// are there any images to edit?
$form['text'] = array(
'#value' => t('In this step, you can edit the captions of all uploaded images. To complete this task, click the button "Done Editing" at the bottom of this page.'),
'#weight' => -19,
);
$form['#redirect'] = 'node/add/' . arg(2);
// redirect to first upload page again
$form['field_name'] = array(
'#type' => 'value',
'#value' => $field_name,
);
$form['image_nodes'] = array(
'#type' => 'value',
'#value' => implode(';', $image_nodes),
);
$form['#validate'][] = 'fupload_list_images_image_validate';
// some additonal validation of body field
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Done Editing'),
);
}
else {
// no images in queue
$form['text'] = array(
'#value' => t('No images yet in queue.'),
'#weight' => -19,
);
drupal_set_message(t('No images have been found in queue, probably no images have been uploaded yet. Please return to !upload_page if you want to upload some images.', array(
'!upload_page' => l(t('image upload page'), 'node/add/' . arg(2)),
)), 'warning');
}
// variable_set('image_node_types', array('imagefield_bild' => array('title' => 'ImageField', 'fieldname' => 'field_imagefile', 'image_selection' => '', 'imagecache_preset' => 'fupload_preview', 'image_dimension' => '127x200')));
return $form;
}