Maintainers strive to actively monitor issues and respond in a timely manner.

navbar-contrib-icons

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

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',),

Rules Math

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

Features Roles Permissions

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

Track displayed files

Track da files main report example

Description

What is this module for?

Track displayed files module enables the possibility to track how much visitors are viewing files on site.

Every link to a file can be configured to be tracked.
Then, a record is registered each time a visitor access the file from this specific link.

How does it work?

Configure file fields to be tracked in content interface, by selecting the corresponding display.

Links to be tracked can also be integrated in templates or html source of contents, by customizing links.

Specificities

  • The difference between this module and other modules is that this one works with both public and private file system.
  • This module is also interesting if you want to track files displays by user or limit tracking by role.
  • The use of field formatters makes it easy to configure directly in the UI.

Features

  • Diferents availables reports : main report, reports by file, reports by user.
  • Datas provided : displays count, total ips by file, average ips by file, date of last display, users having displayed file, browser used, internal or external URI where the link was visited.

Belgian Postal Codes

This project provides the user with a Belgian postal code field.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained