Imagga
Component type
Categories
Maintenance status
Development status
Component created
Component changed
Integrating Imagga smart cropping as an image style.
Integrating Imagga smart cropping as an image style.
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.
When using Panels with node content. This module will redirect users to correct panel page when searching for minimal content.
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.
This module is used to get around a bug in CMI which outputs a 'null' dependency in CMI.
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;
}
?>
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.
Provides generic blocks for privatemsg module.
Included blocks:
Installation
Converts PHP's array() syntax to PHP 5.4's short array syntax[] using Thomas Bachem's PHP 5.4 Short Array Syntax Converter.
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.