You are here

log_plan.module in Log entity 7

Log Plan - A planning module that utilizes log entities.

File

log_plan/log_plan.module
View source
<?php

/**
 * @file
 * Log Plan - A planning module that utilizes log entities.
 */

/****************************************************************
 * Drupal hooks
 * **************************************************************/

/**
 * Implements hook_permission().
 */
function log_plan_permission() {
  $perms = array(
    'view log plan' => array(
      'title' => t('View log plan'),
      'description' => t('Allow access to the log plan Views'),
    ),
  );
  return $perms;
}

/***************************************************************
 * Views hooks
 * *************************************************************/

/**
 * Implements hook_views_api().
 */
function log_plan_views_api() {
  return array(
    'version' => 3,
  );
}

Functions