function scs_entity_info in Simplenews Content Selection 8
Same name and namespace in other branches
- 7.2 scs.module \scs_entity_info()
Implements hook_entity_info().
File
- ./
scs.module, line 77 - General hooks and commonly-used functions
Code
function scs_entity_info() {
$return = array(
'node' => array(
'view modes' => array(
'scs' => array(
'label' => t('Simplenews Content Selection'),
'custom settings' => TRUE,
),
),
),
);
return $return;
}