Funnelback Accessibility auditor

Component type

module

Maintenance status

Development status

Component created

Component changed



Integrate to Drupal the Funnelback Accessibility Auditor web service.
The Funnelback Accessibility Auditor tool examines files for accessibility issues. Currently it can check HTML and PDF documents.

In this module we integrate the auditor tool to the file upload widget in Drupal to allow live checking of the accessibility of a file.

RefreshLess

Component type

module

Maintenance status

Development status

Downloads

7397

Component created

Component changed

RefreshLess makes navigating your web site faster by only loading the parts that change between pages. Uses the ideas behind Turbolinks technique (pioneered by Rails). But it goes further: thanks to Drupal 8's architecture, we're able to automatically figure out which parts of a page change. So, we only need to send the parts of the page that actually change.

Null

Component type

module

Maintenance status

Development status

Downloads

513

Component created

Component changed

This module is used to get around a bug in CMI which outputs a 'null' dependency in CMI.

Is Positive

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Check if something is a positive number. This module doesn't consider 0 to be a positive number and doesn't distinguish between -0 and 0. If you want to detect 0, use the positive_zero module.

The module allows other modules to alter its behaviour. Here's an example of how to modify it to include 0.

<?php
function MY_MODULE_is_positive_alter($value, &$result) {
  $result = $value >= 0;
}
?>

Term condition

Component type

module

Maintenance status

Development status

Downloads

6134

Component created

Component changed

This module provides a simple Condition plugin which checks to see if the current node has a specific taxonomy term. Not particularly useful on its own, but works wonders in combination with Block Visibility Groups if you're looking to display different blocks based on a node's taxonomy categorization.

Private Message Block

Component type

module

Maintenance status

Development status

Downloads

1092

Component created

Component changed

Provides generic blocks for privatemsg module.

Included blocks:

  • Write new message
  • All messages
  • Sent Messages

Installation

  • Enable module
  • Add block to a page
  • "Write new message" has additional block customization

Text snippet

Component type

module

Maintenance status

Development status

Downloads

13

Component created

Component changed

Text snippet is a simple module aiming at solving a very common task - creating small (static) text chunks, which can be placed in a site via the block system, as a content pane or even as a token. Typical use-case would be if you need to provide a block with text which should be placed in the footer of your site. Your site-editor would only need to edit their texts on the text snippet UI page.