You are here

function recommender_uninstall in Recommender API 7.6

Same name and namespace in other branches
  1. 5 recommender.install \recommender_uninstall()
  2. 6.3 recommender.install \recommender_uninstall()
  3. 6 recommender.install \recommender_uninstall()
  4. 6.2 recommender.install \recommender_uninstall()

Implements hook_uninstall().

File

./recommender.install, line 238
Installation file for the Recommender API module.

Code

function recommender_uninstall() {
  $app = computing_get_applications('recommender');
  entity_delete('computing_application', $app->id);
}