includekrexx

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

Overview

kreXX is a php debug tool, which displays debug information about objects and variables in it's own draggable debug output. It started out as a fork of Krumo, but after several refactoring sessions, there is very little left of Krumo.

Usage

Like Krumo, kreXX will be called in the PHP source code.

krexx($myObject);

Most of the time you will use this method. kreXX will analyse the $object and give you detailed information about it:

  • Public attributes of the object
  • Protected attributes of the object (can be toggled)
  • Private attributes of the object (can be toggled)
  • Content of the traversable part of the object (can be toggled)
  • Result of all configured debugging callbacks (can be configured)

In case the variable is not an object, it will simply display its content.

Country taxonomy importer

Component type

module

Maintenance status

Development status

Component created

Component changed

Overview

Imports country/state/region names to a taxonomy from geonames.org

This module uses the "children" (http://www.geonames.org/export/place-hierarchy.html#children) function of geonames.org. This seems to just drill down by administration divisions, which may be different for each country.

Why I made this to work in the front end with javascript rather than with the batch API, I don't know. I must have been drunk that night.

Simple language field

Component type

module

Categories

Maintenance status

Development status

Downloads

221

Component created

Component changed

A simple language field for Drupal 8 with 2 widgets - select options and autocomplete. Useful for learning purposes or if you need a simple, lightweight solution. This module has no dependencies.

Note: For more features in a language field, see Language field. We are in co-operation.

Field collection Tokens

Component type

module

Maintenance status

Development status

Downloads

684

Component created

Component changed

UNSUPPORTED - NO FURTHER DEVELOPMENT

This module allows administrators to define custom tokens for any field_collection fields on their nodes.

The 'token' display mode is used for rendering subsituted field_collection fields. Rendering falls back to 'default' display mode if 'token' mode is not used.

Best used together with token_filter so users can use tokens in textareas to target field_collection values.

Code Test

Component type

module

Maintenance status

Development status

Component created

Component changed

This is a simple module that creates a form on a path via the hook_menu function. The form requires two numbers on two textfields and then returns the sum of the two when the form is submitted.

Graceful Menu Cache

Component type

module

Maintenance status

Development status

Component created

Component changed

Graceful Menu Cache flags menu caches as stale instead of clearing them.
At cron run, it generates new caches and then replaces the old caches.
Doing so, users only have to wait for the cache to build, the first time it gets loaded.
This gives a major performance boost to Drupal installations with a lot of menu items.

The disadvantage is that it takes longer for anonymous users to see menu changes. It takes as long as the cron frequency.