You are here

function entity_block_get_blacklisted_view_modes in Entity Blocks 7

Returns an array of blacklisted view modes.

2 calls to entity_block_get_blacklisted_view_modes()
entity_block_form in ./entity_block.module
Returns the form for adding an entity block.
entity_block_get_entity_types in ./entity_block.module
Returns an array of entity types.

File

./entity_block.module, line 519
Display entities (via view modes) as fieldable blocks.

Code

function entity_block_get_blacklisted_view_modes() {
  return array(
    'token',
    'queue',
    'rss',
  );
}