This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/drupal/console/templates/module/post-update.php.twig
2018-11-23 12:29:20 +00:00

13 lines
409 B
Twig

{% block file_methods %}
{% if not file_exists %}
{% include 'module/php_tag.php.twig' %}
{% endif %}
/**
* Implements hook_post_update_NAME() on Module {{ module }} Post Update {{ post_update_name }}.
*/
function {{ module }}_post_update_{{ post_update_name }}(&$sandbox) {
drupal_set_message('Module {{ module }} Post Update # {{ post_update_name }} () was executed successfully.');
}
{% endblock %}