<?php

/**
 * @file
 * Example module for gRaphaël, demonstrating its API.
 *
 * The main module file is just concerned with Drupal hooks. All the fun 
 * stuff happens in graphael_example.graphs.inc.
 *
 * @see graphael_example.graphs.inc
 */

/**
 * Implementation of hook_menu().
 */
function graphael_example_menu() {
  return array('graphael_example' => array(
    'title' => 'gRaphaël example graphs',
    'page callback' => 'graphael_example_graphs_page',
    'access callback' => TRUE, // Everyone has access.
    'file' => 'graphael_example.graphs.inc',
  ));
}

