t('Days of the week'), 'options callback' => 'webform_options_days', 'file' => 'includes/webform.options.inc', ); return $items; } /** * Respond to the loading of Webform submissions. * * @param $submissions * An array of Webform submissions that are being loaded, keyed by the * submission ID. Modifications to the submissions are done by reference. */ function hook_webform_submission_load(&$submissions) { foreach ($submissions as $sid => $submission) { $submissions[$sid]->new_property = 'foo'; } } /** * Modify a Webform submission, prior to saving it in the database. * * @param $node * The Webform node on which this submission was made. * @param $submission * The Webform submission that is about to be saved to the database. */ function hook_webform_submission_presave($node, &$submission) { // Update some component's value before it is saved. $component_id = 4; $submission->data[$component_id]['value'][0] = 'foo'; } /** * Respond to a Webform submission being inserted. * * Note that this hook is called after a submission has already been saved to * the database. If needing to modify the submission prior to insertion, use * hook_webform_submission_presave(). * * @param $node * The Webform node on which this submission was made. * @param $submission * The Webform submission that was just inserted into the database. */ function hook_webform_submission_insert($node, $submission) { // Insert a record into a 3rd-party module table when a submission is added. db_query("INSERT INTO {mymodule_table} nid = %d, sid = %d, foo = '%s'", $node->nid, $submission->sid, 'foo_data'); } /** * Respond to a Webform submission being updated. * * Note that this hook is called after a submission has already been saved to * the database. If needing to modify the submission prior to updating, use * hook_webform_submission_presave(). * * @param $node * The Webform node on which this submission was made. * @param $submission * The Webform submission that was just updated in the database. */ function hook_webform_submission_update($node, $submission) { // Update a record in a 3rd-party module table when a submission is updated. db_query("UPDATE {mymodule_table} SET (foo) VALUES ('%s') WHERE nid = %d, sid = %d", 'foo_data', $node->nid, $submission->sid); } /** * Respond to a Webform submission being deleted. * * @param $node * The Webform node on which this submission was made. * @param $submission * The Webform submission that was just deleted from the database. */ function hook_webform_submission_delete($node, $submission) { // Delete a record from a 3rd-party module table when a submission is deleted. db_query("DELETE FROM {mymodule_table} WHERE nid = %d, sid = %d", $node->nid, $submission->sid); } /** * Alter the display of a Webform submission. * * This function applies to both e-mails sent by Webform and normal display of * submissions when viewing through the adminsitrative interface. * * @param $renderable * The Webform submission in a renderable array, similar to FormAPI's * structure. This variable must be passed in by-reference. Important * properties of this array include #node, #submission, #email, and #format, * which can be used to find the context of the submission that is being * rendered. */ function hook_webform_submission_render_alter(&$renderable) { // Remove page breaks from sent e-mails. if (isset($renderable['#email'])) { foreach (element_children($renderable) as $key) { if ($renderable[$key]['#component']['type'] == 'pagebreak') { unset($renderable[$key]); } } } } /** * Modify a loaded Webform component. * * IMPORTANT: This hook does not actually exist because components are loaded * in bulk as part of webform_node_load(). Use hook_nodeapi() to modify loaded * components when the node is loaded. This example is provided merely to point * to hook_nodeapi(). * * @see hook_nodeapi() * @see webform_node_load() */ function hook_webform_component_load() { // This hook does not exist. Instead use hook_nodeapi(). } /** * Modify a Webform component before it is saved to the database. * * Note that most of the time this hook is not necessary, because Webform will * automatically add data to the component based on the component form. Using * hook_form_alter() will be sufficient in most cases. * * @see hook_form_alter() * @see webform_component_edit_form() * * @param $component * The Webform component being saved. */ function hook_webform_component_presave(&$component) { $component['extra']['new_option'] = 'foo'; } /** * Respond to a Webform component being inserted into the database. */ function hook_webform_component_insert($component) { // Insert a record into a 3rd-party module table when a component is inserted. db_query("INSERT INTO {mymodule_table} (nid, cid) VALUES (%d, %d)", $component['nid'], $component['cid']); } /** * Respond to a Webform component being updated in the database. */ function hook_webform_component_update($component) { // Update a record in a 3rd-party module table when a component is updated. db_query('UPDATE {mymodule_table} SET value "%s" WHERE nid = %d AND cid = %d)', 'foo', $component['nid'], $component['cid']); } /** * Respond to a Webform component being deleted. */ function hook_webform_component_delete($component) { // Delete a record in a 3rd-party module table when a component is deleted. db_query('DELETE FROM {mymodule_table} WHERE nid = %d AND cid = %d)', $component['nid'], $component['cid']); } /** * Define components to Webform. * * @return * An array of components, keyed by machine name. Required properties are * "label" and "description". The "features" array defines which capabilities * the component has, such as being displayed in e-mails or csv downloads. * A component like "markup" for example would not show in these locations. * The possible features of a component include: * * - csv * - email * - email_address * - email_name * - required * - conditional * - spam_analysis * - group * * Note that these features do not indicate the default state, but determine * if the component can have this property at all. Setting "required" to TRUE * does not mean that a field will always be required, but instead give the * option to the administrator to choose the requiredness. See the example * implementation for details on how these features may be set. * * An optional "file" may be specified to be loaded when the component is * needed. A set of callbacks will be established based on the name of the * component. All components follow the pattern: * * _webform_[callback]_[component] * * Where [component] is the name of the key of the component and [callback] is * any of the following: * * - defaults * - theme * - edit * - delete * - render * - display * - analysis * - table * - csv_headers * - csv_data * * See the sample component implementation for details on each one of these * callbacks. * * @see webform_component */ function hook_webform_component_info() { $components = array(); $components['textfield'] = array( 'label' => t('Textfield'), 'description' => t('Basic textfield type.'), 'features' => array( // Add content to CSV downloads. Defaults to TRUE. 'csv' => TRUE, // Show this field in e-mailed submissions. Defaults to TRUE. 'email' => TRUE, // Allow this field to be used as an e-mail FROM or TO address. Defaults // to FALSE. 'email_address' => FALSE, // Allow this field to be used as an e-mail SUBJECT or FROM name. Defaults // to FALSE. 'email_name' => TRUE, // This field may be toggled as required or not. Defaults to TRUE. 'required' => TRUE, // If this field can be used as a conditional SOURCE. All fields may // always be displayed conditionally, regardless of this setting. // Defaults to TRUE. 'conditional' => TRUE, // If this field allows other fields to be grouped within it (like a // fieldset or tabs). Defaults to FALSE. 'group' => FALSE, // If this field saves a file that can be used as an e-mail attachment. // Defaults to FALSE. 'attachment' => FALSE, ), 'file' => 'components/textfield.inc', ); return $components; } /** * Alter the list of available Webform components. * * @param $components * A list of existing components as defined by hook_webform_component_info(). * * @see hook_webform_component_info() */ function hook_webform_component_info_alter(&$components) { // Completely remove a component. unset($components['grid']); // Change the name of a component. $components['textarea']['label'] = t('Text box'); } /** * @} */ /** * @defgroup webform_component Sample Webform Component * @{ * In each of these examples, the word "component" should be replaced with the, * name of the component type (such as textfield or select). These are not * actual hooks, but instead samples of how Webform integrates with its own * built-in components. */ /** * Specify the default properties of a component. * * @return * An array defining the default structure of a component. */ function _webform_defaults_component() { return array( 'name' => '', 'form_key' => NULL, 'mandatory' => 0, 'pid' => 0, 'weight' => 0, 'extra' => array( 'options' => '', 'questions' => '', 'optrand' => 0, 'qrand' => 0, 'description' => '', ), ); } /** * Generate the form for editing a component. * * Create a set of form elements to be displayed on the form for editing this * component. Use care naming the form items, as this correlates directly to the * database schema. The component "Name" and "Description" fields are added to * every component type and are not necessary to specify here (although they * may be overridden if desired). * * @param $component * A Webform component array. * @return * An array of form items to be displayed on the edit component page */ function _webform_edit_component($component) { $form = array(); // Disabling the description if not wanted. $form['description'] = array(); // Most options are stored in the "extra" array, which stores any settings // unique to a particular component type. $form['extra']['options'] = array( '#type' => 'textarea', '#title' => t('Options'), '#default_value' => $component['extra']['options'], '#description' => t('Key-value pairs may be entered separated by pipes. i.e. safe_key|Some readable option') . theme('webform_token_help'), '#cols' => 60, '#rows' => 5, '#weight' => -3, '#required' => TRUE, ); return $form; } /** * Render a Webform component to be part of a form. * * @param $component * A Webform component array. * @param $value * If editing an existing submission or resuming a draft, this will contain * an array of values to be shown instead of the default in the component * configuration. This value will always be an array, keyed numerically for * each value saved in this field. */ function _webform_render_component($component, $value = NULL) { $form_item = array( '#type' => 'textfield', '#title' => $component['name'], '#required' => $component['mandatory'], '#weight' => $component['weight'], '#description' => _webform_filter_descriptions($component['extra']['description']), '#default_value' => $component['value'], '#prefix' => '