This project is under active development.

ZURB Orbit

Orbit is an easy to use, powerful image slider that's responsive, allowing you to swipe on a touch-enabled device.

Official docs for the Foundation Orbit slider plugin can be found here.

7.x-1.0

This branch provides an Orbit slideshow display mode for image fields and field collections with images.

It is largely a port of the Field Slideshow module, fitted for Foundation Orbit.

This release is final and will only have security/critical bug fixes, and leverages Foundation Orbit from Foundation 3.

7.x-2.x

This branch leverages the Media 2.x dev module for file management to allow videos along with images in an Orbit slideshow. It is based off of the Orbit plugin in Foundation 4. If you have a Foundation 4 based theme, this module should work out of the box. It only supports File/Image fields with the Media File Selector widget for functional consistency over the 1.x branch.

Ym developing helper

ym_debug_helper

I am Drupal and php developer, everytime need something like devel module for my developing jobs(specially dsm,dmp ,..), but It's very powerful,heavy and big modules and I could'nt install it ever

Hand-me-down field formatter

This is a field formatter for the Entity reference module that allows you to push field values from the parent entity down int

Querypath template vars

This module populates template vars with html fetched by querypath.
The html can be run through different processors like:

  • paths_rel2abs: Transforms relative paths to absolute.
  • remove_elements: Removes elements from the DOM. Surprise :)

Other modules needs to implement a hook in order to add template vars with querypath fetched html:

function hook_querypath_tpl_vars_settings() {
  return array(
    'header' => array(
      // By now only page is supported.
      'templates' => array('page'),
      'domain' => 'http://acme.com',
      'selector' => '#header',
      'cache' => TRUE,
      'process' => array(
        'paths_rel2abs' => array(),
      ),
    ),
    'navigation' => array(
      // By now only page is supported.
      'templates' => array('page'),
      'domain' => 'http://acme.com',
      'selector' => '#navigation',
      'cache' => TRUE,
      'process' => array(
        'remove_elements' => array('.region-navigation'),
        'paths_rel2abs' => array(
          'exclude' => array(
            'href' => array('/aktiviteter'),
          ),
        ),
      ),
    ),
  );
}

In this case the variables will be present in page.tpl.php :

if ($qtv_header):
print $qtv_header;
endif;
if ($qtv_navigation):

Hangman

hangman

This is a very simple hangman game for Drupal.
It adds an own content type where you can upload a question. You can add an image and some description about the question.

Extended Search

The Extended Search module extends search module to make search on "regexp" condition in place of "like".

Pages

Subscribe with RSS Subscribe to RSS - Under active development