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

Charts

Charts logo

The Charts module enables users to build dynamic charts without writing a line of code by using the Views module or a Chart field (advanced users can make use of the Charts API). Users can choose between multiple charting libraries, such as Billboard.js, C3.js, Chart.js, Google Charts, or Highcharts.

QuickPay payment gateway

This module allows payments to be made through the Danish payment gateway provider QuickPay.

Drupal 7 version includes submodule for integration with Drupal Commerce and Übercart 3.x (UC3 module contributed by B14), the Drupal 6 version includes submodules for Übercart 2.x, and E-Commerce 4.x, and Drupal 5 version supports E-Commerce 3.4 and Übercart 1.x.

All versions contains a sparsely documented, but simple, API for custom integration, with the Drupal 7 being a new OO rewrite.

Read the included README for required implementation information.

ShareThis

Picture 5.png

Integration with the ShareThis social bookmarking utility on selected node types.

Deploy - Content Staging

The Deploy module is designed to allow users to easily stage and preview content for a Drupal site. Deploy automatically manages dependencies between entities (like node references). It is designed to have a rich API which can be easily extended to be used in a variety of content staging situations.

Publish Content

Picture 6.png

This module enables granular publish and unpublish permissions which allows you to grant roles on your site the ability to publish or unpublish specific content types without having to give them the administer content permissions. This is a lightweight solution to managing your content workflows.

CSV Chart

Notice: as of Nov 4, 2014, Pierre.Vriens has become the maintainer of this CSV Chart module. Checkout #2367923: Offering to maintain module CSV Chart for details about this transition. Thank you Konstantinos for this interesting "tiny" module that you started! Stay tuned for 6x-2.x and 7x-2.x upgrades of the CSV Chart module. And feel free to file new issues about it in the issue queue.

For a first impression about charts created with the 5.x-1.x version of this module, checkout the barchart example (near the bottom of the page).

This tiny module uses Custom filter (previously CCK Computed field) and Chart API modules and embeds a Google Chart anywhere inside the node text. It needs some setup before it can be used, but thankfully it's easier now than previously with the Computed Field module, and it allows multiple graphs per node.

First, you need to have Custom Filter installed. Then in any Filterset of your choice, add a new filter and name it eg. CSV Custom Filter. In the Pattern field enter:

/[<\[]csvdata[>\]](.*?)[<\[]\/csvdata[>\]]/is

exactly. That way, you may use csvdata with [] or <> brackets (for bbcode-style or HTML input formats). In the Replacement Text enter:

$output = "";
$csvdata = $matches[1];

if ($csvdata != "") {
  $csv = csvchart_get_csv_values($csvdata);
  $graph = csvchart_create_graph($csv,TRUE);
  $output .= "[img]".$graph."[/img]";
}
return $output;

for the bbcode input format. If you want to use HTML filtering, use the following instead:


$output = "";
$csvdata = $matches[1];

if ($csvdata != "") {
$csv = csvchart_get_csv_values($csvdata);

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained