You are here

function easychart_uninstall in Easychart 7.3

Same name and namespace in other branches
  1. 7 easychart.install \easychart_uninstall()
  2. 7.2 easychart.install \easychart_uninstall()

Implements hook_uninstall().

File

./easychart.install, line 11
Easychart install file.

Code

function easychart_uninstall() {
  node_type_delete('easychart');
  file_unmanaged_delete('public://easychart-options.json');
}