📜  drupal 8 卸载挂钩 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:47.082000             🧑  作者: Mango

代码示例1
function hook_uninstall() {

  // Remove the styles directory and generated images.
  file_unmanaged_delete_recursive(file_default_scheme() . '://styles');
}