/[drupal]/contributions/modules/versioncontrol_git/versioncontrol_git.install
ViewVC logotype

Contents of /contributions/modules/versioncontrol_git/versioncontrol_git.install

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.19 - (show annotations) (download) (as text)
Mon Oct 19 15:20:27 2009 UTC (5 weeks, 3 days ago) by marvil07
Branch: MAIN
CVS Tags: HEAD
Changes since 1.18: +6 -48 lines
File MIME type: text/x-php
avoid own table for repo, use repo::data instead

Use VersioncontrolRepository::data to store fields that was on
versioncontrol_git_repositories table.
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 }

  ViewVC Help
Powered by ViewVC 1.1.2