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/update.php.twig

13 lines
379 B
Twig
Raw Normal View History

2018-11-23 12:29:20 +00:00
{% block file_methods %}
{% if not file_exists %}
{% include 'module/php_tag.php.twig' %}
{% endif %}
/**
* Implements hook_update_N() on Module {{ module }} Update # {{ update_number }}.
*/
function {{ module }}_update_{{ update_number }}(&$sandbox) {
drupal_set_message('Module {{ module }} Update # {{ update_number }} () was executed successfully.');
}
{% endblock %}