autoload_test_entity.module in Autoload 7
Same filename and directory in other branches
Autoload Entity Test.
File
tests/autoload_test_entity/autoload_test_entity.moduleView 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
Name![]() |
Description |
---|---|
autoload_test_entity_entity_info | Implements hook_entity_info_alter(). |