function workbench_moderation_entity_info in Workbench Moderation 7
Same name and namespace in other branches
- 7.3 workbench_moderation.module \workbench_moderation_entity_info()
Implements hook_entity_info().
File
- ./
workbench_moderation.module, line 2366 - Content moderation for Workbench.
Code
function workbench_moderation_entity_info() {
// Entification of transitions, for use with an entity reference field.
$entity_info['workbench_moderation_transition'] = array(
'label' => t('Workbench Moderation Transition'),
'label callback' => 'workbench_moderation_transition_label_callback',
'entity class' => 'Entity',
'controller class' => 'EntityAPIController',
'access callback' => 'workbench_moderation_transition_access',
'base table' => 'workbench_moderation_transitions',
'fieldable' => FALSE,
'module' => 'workbench_moderation',
'entity keys' => array(
'id' => 'id',
),
);
return $entity_info;
}