You are here

function simplenews_update_830001 in Simplenews 3.x

Remove redundant view mode 'email_textalt'.

File

./simplenews.install, line 274
Install, update and uninstall functions for the simplenews module.

Code

function simplenews_update_830001() {
  \Drupal::entityTypeManager()
    ->getStorage('entity_view_mode')
    ->load('node.email_textalt')
    ->delete();
}