'', 'form_key' => NULL, 'pid' => 0, 'weight' => 0, 'value' => '', 'extra' => array( ), ); } /** * Implementation of _webform_theme_component(). */ function _webform_theme_hidden() { return array( 'webform_display_hidden' => array( 'render element' => 'element', ), ); } /** * Implementation of _webform_edit_component(). */ function _webform_edit_hidden($component) { $form = array(); $form['value'] = array( '#type' => 'textarea', '#title' => t('Default value'), '#default_value' => $component['value'], '#description' => t('The default value of the field.') . theme('webform_token_help'), '#cols' => 60, '#rows' => 5, '#weight' => 0, ); $form['extra']['description'] = array(); // Hide the description box. $form['display'] = array('#type' => 'markup'); // Hide the display options. $form['display']['title_display'] = array(); return $form; } /** * Implementation of _webform_render_component(). */ function _webform_render_hidden($component, $value = NULL, $filter = TRUE) { $element = array( '#type' => 'hidden', '#title' => $filter ? _webform_filter_xss($component['name']) : $component['name'], '#default_value' => $filter ? _webform_filter_values($component['value']) : $component['value'], '#weight' => $component['weight'], ); if (isset($value[0])) { $element['#default_value'] = $value[0]; } return $element; } /** * Implementation of _webform_display_component(). */ function _webform_display_hidden($component, $value, $format = 'html') { $element = array( '#title' => t('!name (hidden)', array('!name' => $component['name'])), '#markup' => isset($value[0]) ? $value[0] : NULL, '#weight' => $component['weight'], '#theme' => 'webform_display_hidden', '#format' => $format, '#theme' => 'webform_display_hidden', '#theme_wrappers' => $format == 'text' ? array('webform_element_text') : array('webform_element'), '#webform_component' => $component, ); // TODO: This check is unusual. It shows hidden fields in e-mails but not // when viewing in the browser unless you're an administrator. This should be // a more logical check. See these related issues: // http://drupal.org/node/313639 // http://drupal.org/node/781786 if ($format == 'html') { $element['#access'] = user_access('edit all webform submissions') || user_access('access all webform results'); } return $element; } function theme_webform_display_hidden($variables) { $element = $variables['element']; return $element['#format'] == 'html' ? check_plain($element['#markup']) : $element['#markup']; } /** * Implementation of _webform_analysis_component(). */ function _webform_analysis_hidden($component, $sids = array()) { $query = db_select('webform_submitted_data', 'wsd', array('fetch' => PDO::FETCH_ASSOC)) ->fields('wsd', array('no', 'data')) ->condition('nid', $component['nid']) ->condition('cid', $component['cid']); if (count($sids)) { $query->condition('sid', $sids, 'IN'); } $nonblanks = 0; $submissions = 0; $wordcount = 0; $result = $query->execute(); foreach ($result as $data) { if ( strlen(trim($data['data'])) > 0 ) { $nonblanks++; $wordcount += str_word_count(trim($data['data'])); } $submissions++; } $rows[0] = array( t('Empty'), ($submissions - $nonblanks)); $rows[1] = array( t('Non-empty'), $nonblanks); $rows[2] = array( t('Average submission length in words (ex blanks)'), ($nonblanks !=0 ? number_format($wordcount/$nonblanks, 2) : '0')); return $rows; } /** * Implementation of _webform_csv_data_component(). */ function _webform_table_hidden($component, $value) { return check_plain(empty($value[0]) ? '' : $value[0]); } /** * Implementation of _webform_csv_data_component(). */ function _webform_csv_headers_hidden($component, $export_options) { $header = array(); $header[0] = ''; $header[1] = ''; $header[2] = $component['name']; return $header; } /** * Implementation of _webform_csv_data_component(). */ function _webform_csv_data_hidden($component, $export_options, $value) { return empty($value[0]) ? '' : $value[0]; }