You are here

webform_options_limit.install in Webform 6.x

Same filename and directory in other branches
  1. 8.5 modules/webform_options_limit/webform_options_limit.install

Install, update and uninstall functions for the Webform options limit module.

File

modules/webform_options_limit/webform_options_limit.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Webform options limit module.
 */

// Webform install helper functions.
include_once __DIR__ . '/../../includes/webform.install.inc';

/**
 * Issue #3093104: Per User Option Limits Handler.
 */
function webform_options_limit_update_8001() {
  _webform_update_webform_handler_settings();
}

/**
 * Issue #3124729: Option Limit broken for Tableselect.
 */
function webform_options_limit_update_8002() {
  _webform_update_webform_handler_settings();
}

Functions

Namesort descending Description
webform_options_limit_update_8001 Issue #3093104: Per User Option Limits Handler.
webform_options_limit_update_8002 Issue #3124729: Option Limit broken for Tableselect.