You are here

restful_example.module in RESTful 7

Same filename and directory in other branches
  1. 7.2 modules/restful_example/restful_example.module

Example module for the RESTful module.

File

modules/restful_example/restful_example.module
View source
<?php

/**
 * @file
 * Example module for the RESTful module.
 */

/**
 * Implements hook_ctools_plugin_directory().
 */
function restful_example_ctools_plugin_directory($module, $plugin) {
  if ($module == 'restful') {
    return 'plugins/' . $plugin;
  }
}