Maintainers are looking for help reviewing issues.

Ajax facets

Ajax facets without filtering

This module allows you to create facet filters which working by AJAX. Filters and search results will be updated by AJAX.

Geolocation Views

Info

Geolocation Views is sub-module for Geolocation Field to display markers on Google Map using Views 3.

Google Chat

photo chat support with chat box notification sound option

Everyone loves the gmail and facebook inline chat modules. This chat module enables you to seamlessly integrate Gmail/Facebook style chat into your existing website.

Features

  1. Gmail style bottom right display of chat boxes
  2. Rich Ajax Interface
  3. Avatar / Picture Support
  4. Keeps chat boxes open and stores state (data) even when pages are browsed/refreshed similar to Facebook
  5. Displays “Sent at…” after 3 minutes of inactivity
  6. Displays “X says…” & blinks chat boxes when window is not in focus
  7. If chat window is minimized, it displays if new message arrived
  8. Minimize and close chat boxes
  9. Auto-resize of text input box
  10. Auto-scrolling of chat text
  11. Auto-back-off polling policy (hits the server less-often when chat activity is low)
  12. Supports emoticons(detects them automatically in chat messages)
  13. Extremely simple to integrate into existing site
  14. Provides notification sound when a new chat message is received
  15. Multiple skin support
  16. Turn urls and email into links automatically

Optional support with following module

Random Weight

Allows nodes to have their weight assigned randomly at set periods of time.

About

This module works along side the Weight module. It's main purpose is to allow you to have the weight of nodes randomly updated at set intervals.

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.

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):

Pages

Subscribe with RSS Subscribe to RSS - Seeking co-maintainer(s)