Actively maintained

Bug reports are looked at; requested features may be implemented.

ScalD Brightcove

New ScalD provider supporting Brightcove Videos and player.

Features :

  • Import Videos from embed code or video Id.
  • Configure a default player for your videos (under development).
  • Configure Rss import lists (under development).

navbar-contrib-icons

This is a temporary repo as none of the patches from http://drupal.org/node/1954912 will apply with drush make. This repo incorporates those additions.

External tables and fields invoked views with custom module

Step 1) Create module info file " mymodule_views_table.info ".

name = mymodule_views_table
description = Create external table view.
package = Custom Drupal 7 Development
core = 7.x

Step 2) Create module file " mymodule_views_table.module ".

<?php
function mymodule_views_table_views_api(){ // Register view API information
$view = array();
$view = array('api'=>3,
'path'=>drupa_get_path('module','mymodule_views_table')
);
return $view;
}

function mymodule_views_table_views_data(){ //Describes data tables
$table = array();

$table['custom table']['table']['group'] => t('custom table');
$table['custom table']['table']['base'] =>array(
'title'=>t('Courses'), //Courses is Custom external table
'field'=>'id',
'help'=>t('Contains courses, departments, and descriptions'));

$table['custom table']['title']=>array(
'title'=>t('Course name'), //Custom external table field
'help'=>t('Course name'),
'field'=> array(
'handler'=> 'views_handler_field',
'click sortable'=> TRUE,),
'sort'=>array(handler=>'views_handler_sort',),

Read more

Rules Math

A contrib for rules to add a math expression action (as it is known from the views math field).

TwemeX

ScrollSpy navigation

TwemeX is an extension module for the Tweme empowering it with several UX enhancements such as automatic ScrollSpy navigation block (like you see on the left side of this page).

Features

  • Automatic ScrollSpy navigation block

Installation

  1. Ensure that you already installed Tweme.
  2. Then download and install this module as usual.
  3. Go to "Structure" > "Blocks" and place "ScrollSpy navigation" block into one of affixed sidebar regions.
  4. That's it! The magic should happen.

How it works

  • All headings from the "Content" region will be automatically extracted and placed to the "ScrollSpy navigation" block.
  • Supported heading markup: <h3 id="anchor">Heading</h3>.
  • If you are using Markdown: ### Heading {#anchor}.

Features Roles Permissions

Adds support for exporting roles with related permissions in features.
Port of the patch from https://drupal.org/node/1411678.

Subscribe with RSS Syndicate content
nobody click here