| 1 |
<?php
|
| 2 |
// $Id: versioncontrol_git.install,v 1.18 2009/10/16 19:48:22 marvil07 Exp $
|
| 3 |
/**
|
| 4 |
* @file
|
| 5 |
* Git backend for Version Control API - Provides Git commit information and
|
| 6 |
* account management as a pluggable backend.
|
| 7 |
*
|
| 8 |
* Copyright 2008 by Jimmy Berry ("boombatower", http://drupal.org/user/214218)
|
| 9 |
* Copyright 2009 by Cornelius Riemenschneider ("CorniI", http://drupal.org/user/136353)
|
| 10 |
*/
|
| 11 |
|
| 12 |
/**
|
| 13 |
* Implementation of hook_uninstall().
|
| 14 |
*/
|
| 15 |
function versioncontrol_git_uninstall() {
|
| 16 |
cache_clear_all('versioncontrol_git_rev_cache', 'cache');
|
| 17 |
}
|
| 18 |
|
| 19 |
/**
|
| 20 |
* Implementation of hook_disable().
|
| 21 |
*/
|
| 22 |
function versioncontrol_git_disable() {
|
| 23 |
cache_clear_all('versioncontrol_git_rev_cache', 'cache');
|
| 24 |
}
|