Skip to content

Instantly share code, notes, and snippets.

@swichers
Last active October 18, 2019 21:13
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save swichers/9553889 to your computer and use it in GitHub Desktop.
Save swichers/9553889 to your computer and use it in GitHub Desktop.
Drupal 7 - Programmatically add view mode to entity

In a module file:

This will enable an additional view mode for use on the specified entity type(s). Many examples will show the custom settings here being set to TRUE. If TRUE is used then that view mode is added to all entities of the specified type regardless of if it should be on the bundle or not.

/**
 * Implements hook_entity_info_alter().
 */
function HOOK_entity_info_alter(&$entity_info) {

  $entity_info['node']['view modes'] += array(
    'view_mode_machine_name' => array(
      'label' => t('View mode display name'),
      'custom settings' => FALSE,
    ),
  );
}

Where "view_mode_machine_name" is the machine name of the view mode you want to add (ex: sidebar).

In a hook_update(), hook_install(), or hook_enable():

This code will enable the view mode for a specific bundle. This is optional if the view mode should be disabled by default.

  $settings = field_bundle_settings('node', 'article');
  $settings['view_modes']['view_mode_machine_name']['custom_settings'] = TRUE;
  field_bundle_settings('node', 'article', $settings);

Where "node" is the entity type (node, file, taxonomy_term, etc.).

Where "article" is the bundle (node type).

Where "view_mode_machine_name" is the machine name above (ex: sidebar).

@komlenic
Copy link

Thank you for this - was struggling to figure out how to programmatically enable view mode custom settings for a created content type. Thanks!

@ccjjmartin
Copy link

Thanks so much!

@pamatt
Copy link

pamatt commented Feb 22, 2019

Neat! HOOK_entity_info_alter() should not return anything, though: it acts on the $entity_info array by reference.

@swichers
Copy link
Author

@pamatt Updated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment