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

Contents of /contributions/modules/og_gradebook/og_gradebook.install

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


Revision 1.1 - (show annotations) (download) (as text)
Sun Nov 5 23:30:52 2006 UTC (3 years ago) by rwohleb
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-5, DRUPAL-4-7, DRUPAL-6--1
File MIME type: text/x-php
Initial og_group import.
1 <?php
2 // $Id$
3
4 // hook_install
5 function og_gradebook_install() {
6 switch ($GLOBALS['db_type']) {
7 case 'mysql':
8 case 'mysqli':
9 db_query("
10 CREATE TABLE IF NOT EXISTS {og_gradebook} (
11 tid int(10) unsigned NOT NULL default '0',
12 nid int(10) unsigned NOT NULL default '0',
13 PRIMARY KEY (tid,nid)
14 )");
15 db_query("UPDATE {system} SET weight = %d WHERE name = '%s'", 2, 'og_gradebook');
16 break;
17 case 'psgql':
18 // TODO
19 break;
20 }
21 }

  ViewVC Help
Powered by ViewVC 1.1.2