You are here

autoload_test_entity.module in Autoload 7.2

Same filename and directory in other branches
  1. 7 tests/autoload_test_entity/autoload_test_entity.module

Autoload Entity Test.

File

tests/autoload_test_entity/autoload_test_entity.module
View source
<?php

/**
 * @file
 * Autoload Entity Test.
 */

/**
 * Implements hook_entity_info_alter().
 */
function autoload_test_entity_entity_info() {
  $info = array();
  $info['autoload_test_entity'] = array(
    'label' => t('Autoload Test Entity'),
    'base table' => 'autoload_test_entity',
    'controller class' => 'EntityAPIController',
    'entity keys' => array(
      'id' => 'id',
    ),
  );
  return $info;
}

Functions