farmOS/modules/core/quick/farm_quick.post_update.php

16 lines
339 B
PHP

<?php
/**
* @file
* Post update hooks for the farmOS Quick Form module.
*/
/**
* Install the new quick_form entity type.
*/
function farm_quick_post_update_install_quick_form_entity_type(&$sandbox) {
\Drupal::entityDefinitionUpdateManager()->installEntityType(
\Drupal::entityTypeManager()->getDefinition('quick_form')
);
}