'',
'form_key' => NULL,
'mandatory' => 0,
'pid' => 0,
'weight' => 0,
'extra' => array(
'filtering' => array(
'types' => array('gif', 'jpg', 'png'),
'addextensions' => '',
'size' => 800,
),
'savelocation' => '',
'width' => '',
'title_display' => 0,
'description' => '',
'attributes' => array(),
),
);
}
/**
* Implementation of _webform_theme_component().
*/
function _webform_theme_file() {
return array(
'webform_edit_file' => array(
'arguments' => array('form' => NULL),
),
'webform_render_file' => array(
'arguments' => array('element' => NULL),
),
'webform_display_file' => array(
'arguments' => array('element' => NULL),
),
);
}
/**
* Implementation of _webform_edit_component().
*/
function _webform_edit_file($component) {
$form = array();
$form['#theme'] = 'webform_edit_file';
$form['validation']['filtering'] = array(
'#element_validate' => array('_webform_edit_file_filtering_validate'),
'#parents' => array('extra', 'filtering'),
);
// Find the list of all currently valid extensions.
$current_types = isset($component['extra']['filtering']['types']) ? $component['extra']['filtering']['types'] : array();
$types = array('gif', 'jpg', 'png');
$form['validation']['filtering']['types']['webimages'] = array(
'#type' => 'checkboxes',
'#title' => t('Web Images'),
'#options' => drupal_map_assoc($types),
'#default_value' => array_intersect($current_types, $types),
);
$types = array('bmp', 'eps', 'tif', 'pict', 'psd');
$form['validation']['filtering']['types']['desktopimages'] = array(
'#type' => 'checkboxes',
'#title' => t('Desktop Images'),
'#options' => drupal_map_assoc($types),
'#default_value' => array_intersect($current_types, $types),
);
$types = array('txt', 'rtf', 'html', 'odf', 'pdf', 'doc', 'docx', 'ppt', 'pptx', 'xls', 'xlsx', 'xml');
$form['validation']['filtering']['types']['documents'] = array(
'#type' => 'checkboxes',
'#title' => t('Documents'),
'#options' => drupal_map_assoc($types),
'#default_value' => array_intersect($current_types, $types),
);
$types = array('avi', 'mov', 'mp3', 'ogg', 'wav');
$form['validation']['filtering']['types']['media'] = array(
'#type' => 'checkboxes',
'#title' => t('Media'),
'#options' => drupal_map_assoc($types),
'#default_value' => array_intersect($current_types, $types),
);
$types = array('bz2', 'dmg', 'gz', 'jar', 'rar', 'sit', 'tar', 'zip');
$form['validation']['filtering']['types']['archives'] = array(
'#type' => 'checkboxes',
'#title' => t('Archives'),
'#options' => drupal_map_assoc($types),
'#default_value' => array_intersect($current_types, $types),
);
$form['validation']['filtering']['addextensions'] = array(
'#type' => 'textfield',
'#title' => t('Additional Extensions'),
'#default_value' => $component['extra']['filtering']['addextensions'],
'#description' => t('Enter a list of additional file extensions for this upload field, seperated by commas.
Entered extensions will be appended to checked items above.'),
'#size' => 60,
'#weight' => 3,
'#default_value' => $component['extra']['filtering']['addextensions'],
);
$form['validation']['filtering']['size'] = array(
'#type' => 'textfield',
'#title' => t('Max Upload Size'),
'#default_value' => $component['extra']['filtering']['size'],
'#description' => t('Enter the max file size a user may upload (in KB).'),
'#size' => 10,
'#weight' => 3,
'#field_suffix' => t('KB'),
'#default_value' => $component['extra']['filtering']['size'],
'#parents' => array('extra', 'filtering', 'size'),
'#element_validate' => array('_webform_edit_file_size_validate'),
);
$form['extra']['savelocation'] = array(
'#type' => 'textfield',
'#title' => t('Upload Directory'),
'#default_value' => $component['extra']['savelocation'],
'#description' => t('Webform uploads are always saved in the site files directory. You may optionally specify a subfolder to store your files.'),
'#weight' => 3,
'#field_prefix' => file_directory_path() . '/webform/',
'#element_validate' => array('_webform_edit_file_check_directory'),
'#after_build' => array('_webform_edit_file_check_directory'),
);
$form['display']['width'] = array(
'#type' => 'textfield',
'#title' => t('Width'),
'#default_value' => $component['extra']['width'],
'#description' => t('Width of the file field.') . ' ' . t('Leaving blank will use the default size.'),
'#size' => 5,
'#maxlength' => 10,
'#weight' => 4,
'#parents' => array('extra', 'width')
);
return $form;
}
/**
* A Form API element validate function to check filesize is numeric.
*/
function _webform_edit_file_size_validate($element) {
if (!empty($element['#value'])) {
if (!is_numeric($element['#value']) || intval($element['#value']) != $element['#value']) {
form_error($element, t('Max upload size must be a number in KB.'));
}
}
}
/**
* A Form API after build function.
*
* Ensure that the destination directory exists and is writable.
*/
function _webform_edit_file_check_directory($element) {
$base_dir = file_directory_path() . '/webform';
$base_success = file_check_directory($base_dir, FILE_CREATE_DIRECTORY);
$destination_dir = $base_dir . '/' . $element['#value'];
// Try to make the directory recursively before calling file_check_directory().
// This may be removed in D7, as recusive is the default there.
@mkdir($destination_dir, 0775, TRUE);
$destination_success = file_check_directory($destination_dir, FILE_CREATE_DIRECTORY);
if (!$base_success || !$destination_success) {
form_set_error('savelocation', t('The save directory %directory could not be created. Check that the webform files directory is writtable.', array('%directory' => $destination_dir)));
}
return $element;
}
/**
* A Form API element validate function.
*
* Change the submitted values of the component so that all filtering extensions
* are saved as a single array.
*/
function _webform_edit_file_filtering_validate($element, &$form_state) {
// Predefined types.
$extensions = array();
foreach (element_children($element['types']) as $category) {
foreach (array_keys($element['types'][$category]['#value']) as $extension) {
if ($element['types'][$category][$extension]['#value']) {
$extensions[] = $extension;
}
}
}
// Additional types.
$additional_extensions = explode(',', $element['addextensions']['#value']);
foreach ($additional_extensions as $extension) {
$clean_extension = drupal_strtolower(trim($extension));
if (!empty($clean_extension) && !in_array($clean_extension, $extensions)) {
$extensions[] = $clean_extension;
}
}
form_set_value($element['types'], $extensions, $form_state);
}
function theme_webform_edit_file($form) {
// Add a little JavaScript to check all the items in one type.
$javascript = '
function check_category_boxes() {
var checkValue = !document.getElementById("edit-extra-filtering-types-"+arguments[0]+"-"+arguments[1]).checked;
for(var i=1; i < arguments.length; i++) {
document.getElementById("edit-extra-filtering-types-"+arguments[0]+"-"+arguments[i]).checked = checkValue;
}
}
';
drupal_add_js($javascript, 'inline');
// Format the components into a table.
$per_row = 6;
$rows = array();
foreach (element_children($form['validation']['filtering']['types']) as $key => $filtergroup) {
$row = array();
$first_row = count($rows);
if ($form['validation']['filtering']['types'][$filtergroup]['#type'] == 'checkboxes') {
// Add the title.
$row[] = $form['validation']['filtering']['types'][$filtergroup]['#title'];
$row[] = ' ';
// Convert the checkboxes into individual form-items.
$checkboxes = expand_checkboxes($form['validation']['filtering']['types'][$filtergroup]);
// Render the checkboxes in two rows.
$checkcount = 0;
$jsboxes = '';
foreach (element_children($checkboxes) as $key) {
$checkbox = $checkboxes[$key];
if ($checkbox['#type'] == 'checkbox') {
$checkcount++;
$jsboxes .= "'" . $checkbox['#return_value'] . "',";
if ($checkcount <= $per_row) {
$row[] = array('data' => drupal_render($checkbox));
}
elseif ($checkcount == $per_row + 1) {
$rows[] = array('data' => $row, 'style' => 'border-bottom: none;');
$row = array(array('data' => ' '), array('data' => ' '));
$row[] = array('data' => drupal_render($checkbox));
}
else {
$row[] = array('data' => drupal_render($checkbox));
}
}
}
// Pretty up the table a little bit.
$current_cell = $checkcount % $per_row;
if ($current_cell > 0) {
$colspan = $per_row - $current_cell + 1;
$row[$current_cell + 1]['colspan'] = $colspan;
}
// Add the javascript links.
$jsboxes = drupal_substr($jsboxes, 0, drupal_strlen($jsboxes) - 1);
$rows[] = array('data' => $row);
$select_link = ' (select)';
$rows[$first_row]['data'][1] = array('data' => $select_link, 'width' => 40);
unset($form['validation']['filtering']['types'][$filtergroup]);
}
elseif ($filtergroup != 'size') {
// Add other fields to the table (ie. additional extensions).
$row[] = $form['validation']['filtering']['types'][$filtergroup]['#title'];
unset($form['validation']['filtering']['types'][$filtergroup]['#title']);
$row[] = array(
'data' => drupal_render($form['validation']['filtering']['types'][$filtergroup]),
'colspan' => $per_row + 1,
);
unset($form['validation']['filtering']['types'][$filtergroup]);
$rows[] = array('data' => $row);
}
}
$header = array(array('data' => t('Category'), 'colspan' => '2'), array('data' => t('Types'), 'colspan' => $per_row));
// Create the table inside the form.
$form['validation']['filtering']['types']['table'] = array(
'#value' => theme('table', $header, $rows)
);
$output = drupal_render($form);
return $output;
}
/**
* Implementation of _webform_render_component().
*/
function _webform_render_file($component, $value = NULL, $filter = TRUE) {
$node = node_load($component['nid']);
$form_key = implode('_', webform_component_parent_keys($node, $component));
$element[$form_key] = array(
'#type' => $component['type'],
'#title' => $filter ? _webform_filter_xss($component['name']) : $component['name'],
'#title_display' => $component['extra']['title_display'] ? $component['extra']['title_display'] : 'before',
//'#required' => $component['mandatory'], // Drupal core bug with required file uploads.
'#description' => $filter ? _webform_filter_descriptions($component['extra']['description']) : $component['extra']['description'],
'#attributes' => $component['extra']['attributes'],
'#tree' => FALSE, // file_check_upload assumes a flat $_FILES structure.
'#element_validate' => array(
'_webform_validate_file',
'_webform_required_file', // Custom required routine.
),
'#pre_render' => array('webform_element_title_display'),
'#webform_component' => $component,
);
$element['#webform_required'] = $component['mandatory'];
$element['#webform_form_key'] = $form_key;
$element['#weight'] = $component['weight'];
$element['#theme'] = 'webform_render_file';
$element['#theme_wrappers'] = array('webform_element_wrapper');
$element['#post_render'] = array('webform_element_wrapper');
$element['#webform_component'] = $component;
// Change the 'width' option to the correct 'size' option.
if ($component['extra']['width'] > 0) {
$element[$form_key]['#size'] = $component['extra']['width'];
}
// Add a hidden element to store the FID for new files.
$element['_fid'] = array(
'#type' => 'hidden',
'#default_value' => '',
);
// Add a hidden element to store the FID for existing files.
$element['_old'] = array(
'#type' => 'hidden',
'#value' => isset($value[0]) ? $value[0] : NULL,
);
return $element;
}
/**
* Render a File component.
*/
function theme_webform_render_file($element) {
// Add information about the existing file, if any.
if (isset($element['#default_value'])) {
$element['_fid']['#value'] = $element['#default_value'];
}
$value = $element['_fid']['#value'] ? $element['_fid']['#value'] : $element['_old']['#value'];
if ($value && ($file = webform_get_file($value))) {
$firstchild = array_shift(array_keys($element));
$element[$firstchild]['#suffix'] = ' ' . l(t('Download !filename', array('!filename' => webform_file_name($file->filepath))), webform_file_url($file->filepath)) . (isset($element['#suffix']) ? $element['#suffix'] : '');
$element[$firstchild]['#description'] = '