IP Path Access

Component type

module

Maintenance status

Development status

Downloads

815

Component created

Component changed

IP Path Access is an access control module which allows an administrator to set a path and IP (or IP range) and prevent all users from accessing the path that are not accessing from the set IP address (or IP range).

In other words, the module is intended to permit access to the path and IP set, and deny for all others.

There are permissions available to specify which roles can add and delete IP settings, as well as user roles who can bypass the IP blocking.

Multiple IP and path pairs can be set, as long as they do not exactly match.

Confirm popup

Component type

module

Categories

Maintenance status

Development status

Downloads

1527

Component created

Component changed

This module help site builder or developer to add "Custom JS confirm box" to form
used within site, when user fills form and without complete it want redirect from
that page, Shows the confirm box with warns to save form or leave the page.

Features
-----------------------------------------

  • Use to warn site user to saved changes before leave any unsaved page.
  • Light weight jquery file.

How to use
-------------------------------------------

Rebuild Ajax Forms

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This module is a workaround for a well known bug in Drupal core:

drupal_process_form() deletes cached form + form_state despite still needed for later POSTs with enabled page caching

This module is addressed to developers, since you need to implement hook_form_alter in order for it to work.

How it works:

Admin Status

Component type

module

Maintenance status

Development status

Downloads

5325

Component created

Component changed

Synopsis

The Admin Status module allows certain messages to be shown on the top of the page to users with the right permission. For example, the settings can be configured to show a message on the top of the page if the database needs to be updated (e.g. drush updb).

Here is an example of Admin Status showing all errors and warnings from the core status report page:

Requirements

None.

Field error message override

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Allows you to override error messages per field.

-- USAGE API --

1. Alter the form you want to add custom error messages to using hook_form_alter(), or hook_form_ID_alter().
2. Add $form['#field_error_message'] = TRUE; to your form to apply the custom validation callback.
3. Add '#error_message' to your field array, for example:
$form['body']['#error_message'] = t('custom error');

-- USAGE UI --