$files) { if (is_array($files)) { foreach($files as $delta => $file) { if ($file['preview']) { $items[] = array( 'path' => $file['preview'], 'callback' => '_imagefield_preview', 'access' => TRUE, 'type' => MENU_CALLBACK, ); } } } } } return $items; } /** * transfer a file that is in a 'preview' state. * @todo multiple support */ function _imagefield_preview() { foreach ($_SESSION['imagefield'] as $fieldname => $files) { foreach ($files as $delta => $file) { if ($file['preview'] == $_GET['q']) { file_transfer($file['filepath'], array('Content-Type: '. mime_header_encode($file['filemime']), 'Content-Length: '. $file['filesize'])); exit(); } } } } /** * Implementation of hook_field_info(). */ function imagefield_field_info() { return array( 'image' => array('label' => 'Image'), ); } /** * Implementation of hook_field_settings(). */ function imagefield_field_settings($op, $field) { switch ($op) { case 'form': $form = array(); return $form; case 'validate': break; case 'save': return array(); case 'database columns': $columns = array( 'fid' => array('type' => 'int', 'not null' => TRUE, 'default' => '0'), 'title' => array('type' => 'varchar', length => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), 'alt' => array('type' => 'varchar', length => 255, 'not null' => TRUE, 'default' => "''", 'sortable' => TRUE), ); return $columns; } } /** * insert a file into the database. * @param $node * node object file will be associated with. * @param $file * file to be inserted, passed by reference since fid should be attached. * */ function imagefield_file_insert($node, &$file, $field) { $fieldname = $field['field_name']; $filepath = file_create_path($field['widget']['image_path']) . '/' . $file['filename']; if (imagefield_check_directory($field['widget']['image_path']) && $file = file_save_upload((object)$file, $filepath)) { $file = (array)$file; $file['fid'] = db_next_id('{files}_fid'); db_query("INSERT into {files} (fid, nid, filename, filepath, filemime, filesize) VALUES (%d, %d, '%s','%s','%s',%d)", $file['fid'], $node->nid, $file['filename'], $file['filepath'], $file['filemime'], $file['filesize']); return (array)$file; } else { // Include file name in upload error. form_set_error(NULL, t('Image upload was unsuccessful.')); return FALSE; } } /** * update the file record if necessary * @param $node * @param $file * @param $field */ function imagefield_file_update($node, &$file, $field) { $file = (array)$file; if ($file['flags']['delete'] == TRUE) { if(_imagefield_file_delete($file, $field['field_name'])) { return array(); } } if ($file['fid'] == 'upload') { return imagefield_file_insert($node, $file, $field); } else { // if fid is not numeric here we should complain. // else we update the file table. } return $file; } /** * Implementation of hook_field(). */ function imagefield_field($op, $node, $field, &$node_field, $teaser, $page) { $fieldname = $field['field_name']; switch ($op) { // called after content.module loads default data. case 'load': $output = array(); if (count($node_field)) { $values = array(); foreach ($node_field as $delta => $file) { $node_field[$delta] = array_merge((array)$node_field[$delta], _imagefield_file_load($file['fid'])); } $output = array($fieldname => $node_field); }; break; // Deprecated in CCK 5.x dev case 'view': if (!function_exists('_content_field_view')) { $formatter = 'default'; if (module_exists('imagecache')) { $formatter = $field['widget']['body_preset']; if ($teaser) { $formatter = $field['widget']['teaser_preset']; } } foreach ($node_field as $delta => $item) { $node_field[$delta]['view'] = content_format($field, $item, $formatter); } $output = theme('field', $node, $field, $node_field, $teaser, $page); } break; // called before content.module defaults. case 'insert': foreach ($node_field as $delta => $item) { $node_field[$delta] = imagefield_file_insert($node, $item, $field); } break; // called before content.module defaults. case 'update': foreach ($node_field as $delta => $item) { $node_field[$delta] = imagefield_file_update($node, $item, $field); // Remove non-existant files from node_field if (empty($node_field[$delta])) { unset($node_field[$delta]); } } // Compact deltas. $node_field = array_values($node_field); break; case 'delete': foreach ($node_field as $delta => $item) { _imagefield_file_delete($item, $field['field_name']); } break; } return $output; } /** * Implementation of hook_widget_info(). */ function imagefield_widget_info() { return array( 'image' => array( 'label' => 'Image', 'field types' => array('image'), ), ); } /** * Implementation of hook_widget_settings(). */ function imagefield_widget_settings($op, $widget) { switch ($op) { case 'form': $form = array(); $form['max_resolution'] = array ( '#type' => 'textfield', '#title' => t('Maximum resolution for Images'), '#default_value' => $widget['max_resolution'] ? $widget['max_resolution'] : 0, '#size' => 15, '#maxlength' => 10, '#description' => t('The maximum allowed image size expressed as WIDTHxHEIGHT (e.g. 640x480). Set to 0 for no restriction.') ); $form['image_path'] = array( '#type' => 'textfield', '#title' => t('Image path'), '#default_value' => $widget['image_path'] ? $widget['image_path'] : '', '#description' => t('Optional subdirectory within the "%dir" directory where images will be stored. Do not include trailing slash.', array('%dir' => variable_get('file_directory_path', 'files'))), '#after_build' => array('imagefield_form_check_directory'), ); $form['custom_alt'] = array( '#type' => 'checkbox', '#title' => t('Enable custom alternate text'), '#default_value' => $widget['custom_alt'] ? $widget['custom_alt'] : 0, '#description' => t('Enable custom alternate text for images. Filename will be used if not checked.'), ); $form['custom_title'] = array( '#type' => 'checkbox', '#title' => t('Enable custom title text'), '#default_value' => $widget['custom_title'] ? $widget['custom_title'] : 0, '#description' => t('Enable custom title text for images. Filename will be used if not checked.'), ); // if imagecache is installed and the display fields patch // isn't in cck, display the imagecache options. if (module_exists('imagecache') && !function_exists('_content_field_view')) { $options = array(); $options['default'] = 'Default'; $presets = _imagecache_get_presets(); foreach($presets as $id => $name) { $options[$name] = $name; } $form['imagecache'] = array( '#type' => 'fieldset', '#title' => 'Imagecache Options', ); $form['imagecache']['teaser_preset'] = array( '#title' => t('Teaser preset'), '#description' => t('Select the imagecache preset you want to handle thumbnails in the teaser.'), '#type' => 'select', '#options' => $options, '#default_value' => $widget['teaser_preset'] ? $widget['teaser_preset'] : 'default' , ); $form['imagecache']['body_preset'] = array( '#title' => t('Body preset'), '#description' => t('Select the imagecache preset you want to handle thumbnails in the body.'), '#type' => 'select', '#options' => $options, '#default_value' => $widget['body_preset'] ? $widget['body_preset'] : 'default', ); } return $form; case 'validate': break; case 'save': return array('max_resolution', 'image_path', 'custom_alt', 'custom_title', 'teaser_preset', 'body_preset'); } } /** * Wrapper function for imagefield_check_directory that accepts a form element * to validate - if user specified one. Won't allow form submit unless the * directory exists & is writable * * @param $form_element * The form element containing the name of the directory to check. */ function imagefield_form_check_directory($form_element) { if(!empty($form_element['#value'])) { imagefield_check_directory($form_element['#value'], $form_element); } return $form_element; } /** * Create the image directory relative to the 'files' dir recursively for every * directory in the path. * * @param $directory * The directory path under files to check, such as 'photo/path/here' * @param $form_element * A form element to throw an error on if the directory is not writable */ function imagefield_check_directory($directory, $form_element = array()) { foreach(explode('/', $directory) as $dir) { $dirs[] = $dir; file_check_directory(file_create_path(implode($dirs,'/')), FILE_CREATE_DIRECTORY, $form_element['#parents'][0]); } return true; } function _imagefield_scale_image($file, $resolution = 0) { $info = image_get_info($file['filepath']); if ($info) { list($width, $height) = explode('x', $resolution); if ($width && $height) { $result = image_scale($file['filepath'], $file['filepath'], $width, $height); if ($result) { $file['filesize'] = filesize($file['filepath']); drupal_set_message(t('The image was resized to fit within the maximum allowed resolution of %resolution pixels', array('%resolution' => $resolution))); } } } return $file; } function imagefield_clear_session() { if (is_array($_SESSION['imagefield']) && count($_SESSION['imagefield'])) { foreach (array_keys($_SESSION['imagefield']) as $fieldname) { imagefield_clear_field_session($fieldname); } unset($_SESSION['imagefield']); } } function imagefield_clear_field_session($fieldname) { if (is_array($_SESSION['imagefield'][$fieldname]) && count($_SESSION['imagefield'][$fieldname])) { foreach ($_SESSION['imagefield'][$fieldname] as $files) { if (is_file($file['filepath'])) { file_delete($file['filepath']); } } unset($_SESSION['imagefield'][$fieldname]); } } function _imagefield_file_delete($file, $fieldname) { if (is_numeric($file['fid'])) { db_query('DELETE FROM {files} WHERE fid = %d', $file['fid']); } else { unset($_SESSION['imagefield'][$fieldname][$file['sessionid']]); } return file_delete($file['filepath']); } /** * Implementation of hook_widget(). */ function imagefield_widget($op, &$node, $field, &$node_field) { $fieldname = $field['field_name']; $content_type = $field['type_name']; switch ($op) { case 'prepare form values': // clean up the session if we weren't posted. if (!count($_POST)) { imagefield_clear_session(); } // Attach new files if ($file = file_check_upload($fieldname . '_upload')) { $file = (array)$file; if (strpos($file['filemime'],'image') !== FALSE) { $file = _imagefield_scale_image($file, $field['widget']['max_resolution']); // Create the filepath for the image preview $filepath = file_create_filename($file['filename'], file_create_path($field['widget']['image_path'])); if (variable_get('file_downloads', FILE_DOWNLOADS_PUBLIC) == FILE_DOWNLOADS_PRIVATE) { if (strpos($filepath, file_directory_path()) !== FALSE) { $filepath = trim(substr($filepath, strlen(file_directory_path())), '\\/'); } $filepath = 'system/files/' . $filepath; } $file['fid'] = 'upload'; $file['preview'] = $filepath; // If a single field, mark any other images for deletion and delete files in session if (!$field['multiple']) { if (is_array($node_field)) { foreach ($node_field as $delta => $session_file) { $node_field[$delta]['flags']['delete'] = TRUE; } } imagefield_clear_field_session($fieldname); } // Add the file to the session $file_id = count($node_field) + count($_SESSION['imagefield'][$fieldname]); $_SESSION['imagefield'][$fieldname][$file_id] = $file; } } // Load files from preview state. before committing actions. if (is_array($_SESSION['imagefield'][$fieldname]) && count($_SESSION['imagefield'][$fieldname])) { foreach($_SESSION['imagefield'][$fieldname] as $delta => $file) { $node_field[] = $file; } } break; case 'form': $form = _imagefield_widget_form($node, $field, $node_field); return $form; case 'validate': if ($field['required']) { if (!count($node_field)) { form_set_error($fieldname, $field['widget']['label'] .' is required.'); } } return; } } function _imagefield_widget_form($node, $field, &$node_field) { $fieldname = $field['field_name']; drupal_add_css(drupal_get_path('module', 'imagefield') .'/imagefield.css'); $form = array(); $form[$fieldname] = array( '#type' => 'fieldset', '#title' => t($field['widget']['label']), '#weight' => $field['widget']['weight'], '#collapsible' => TRUE, '#collapsed' => FALSE, '#tree' => TRUE, ); // Seperate from tree becase of that silly things won't be // displayed if they are a child of '#type' = form issue $form[$fieldname][$fieldname .'_upload'] = array( '#type' => 'file', '#description' => $field['widget']['description'], '#tree' => FALSE, '#weight' => 9, ); $form[$fieldname]['upload'] = array( '#type' => 'button', '#value' => t('Upload'), '#name' => 'cck_imagefield_'.$fieldname.'_op', '#attributes' => array('id' => $fieldname.'-attach-button'), '#tree' => FALSE, '#weight' => 10, ); // Store the file data object to be carried on. if (is_array($node_field) && count($node_field)) { foreach($node_field as $delta => $file) { if ($file['filepath'] && !$file['flags']['delete']) { $form[$fieldname][$delta] = array ( '#theme' => 'imagefield_edit_image_row', ); $form[$fieldname][$delta]['flags']['delete'] = array( '#type' => 'checkbox', '#title' => t('Delete'), '#default_value' => 0, ); $filename = $file['fid'] == 'upload' ? file_create_filename($file['filename'], file_create_path($field['widget']['image_path'])) : $file['filepath']; $form[$fieldname][$delta]['preview'] = array( '#type' => 'markup', '#value' => theme('imagefield_image', $file, $file['alt'], $file['title'], array('width' => '150'), FALSE), ); //drupal_set_message('imagefield['. $fieldname .'] '. $op .' node field:
'. print_r($node_field, true) .''); $form[$fieldname][$delta]['description'] = array( '#type' => 'markup', '#value' => '' . t('Filename: ') . '' . $file['filename'], ); $form[$fieldname][$delta]['alt'] = array( '#type' => 'hidden', '#value' => $file['filename'], ); // overwrite with an input field if custom_alt is flagged; if ($field['widget']['custom_alt']) { $form[$fieldname][$delta]['alt'] = array( '#type' => 'textfield', '#title' => t('Alternate text'), '#default_value' => $file['alt'], '#description' => t('Alternate text to be displayed if the image cannot be displayed.'), '#maxlength' => 255, '#size' => 10, ); } $form[$fieldname][$delta]['title'] = array( '#type' => 'hidden', '#value' => $file['filename'], ); // overwrite with an input field if custom_title is flagged; if ($field['widget']['custom_title']) { $form[$fieldname][$delta]['title'] = array( '#type' => 'textfield', '#title' => t('Title'), '#default_value' => $file['title'], '#description' => t('Text to be displayed on mouse overs.'), '#maxlength' => 255, '#size' => 10, ); } $form[$fieldname][$delta]['filename'] = array('#type' => 'value', '#value' => $file['filename']); $form[$fieldname][$delta]['filepath'] = array('#type' => 'value', '#value' => $file['filepath']); $form[$fieldname][$delta]['filemime'] = array('#type' => 'value', '#value' => $file['filemime']); $form[$fieldname][$delta]['filesize'] = array('#type' => 'value', '#value' => $file['filesize']); $form[$fieldname][$delta]['fid'] = array('#type' => 'value', '#value' => $file['fid']); // Special handling for single value fields if (!$field['multiple']) { $form[$fieldname][$delta]['replace'] = array( '#type' => 'markup', '#value' => t('If a new image is chosen, the current image will be replaced upon submitting the form.'), ); } } elseif ($file['filepath'] && $file['flags']['delete']) { $form[$fieldname][$delta]['flags']['delete'] = array( '#type' => 'hidden', // A value type will not persist here, must be hidden '#value' => $file['flags']['delete'], ); } } } return $form; } /** * Implementation of hook_field_formatter_info(). */ function imagefield_field_formatter_info() { $formatters = array( 'default' => array( 'label' => 'Default', 'field types' => array('image'), ), ); if (module_exists('imagecache')) { $rules = _imagecache_get_presets(); foreach ($rules as $ruleid => $rulename) { $formatters[$rulename] = array( 'label' => $rulename, 'field types' => array('image'), ); } } return $formatters; } /** * Implementation of hook_field_formatter(). * */ function imagefield_field_formatter($field, $item, $formatter) { if (!isset($item['fid'])) { return ''; } $file = _imagefield_file_load($item['fid']); if (module_exists('imagecache')) { $rules = _imagecache_get_presets(); if (in_array($formatter, (array) $rules)) { return theme('imagecache', $formatter, $file['filepath'], $item['alt'], $item['title']); } } return theme('imagefield_image', $file, $item['alt'], $item['title']); } function _imagefield_file_load($fid = NULL) { // Don't bother if we weren't passed and fid. if (isset($fid)) { // Test to catch fid, eventuall plan to have node_load syntax // once file_attributes table is complete if (is_numeric($fid)) { $result = db_query('SELECT * FROM {files} WHERE fid = %d', $fid); $file = db_fetch_array($result); return ($file) ? $file : array(); } } return array(); } function theme_imagefield_view_image($file, $alt = '', $title = '', $attributes = NULL, $getsize = TRUE) { return theme('imagefield_image', $file, $alt, $title, $attributes , $getsize); } function theme_imagefield_edit_image_row($element) { $output = '