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

Contents of /contributions/modules/na_arbitrator/na_arbitrator.install

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


Revision 1.1 - (show annotations) (download) (as text)
Tue Apr 4 01:37:35 2006 UTC (3 years, 7 months ago) by merlinofchaos
Branch: MAIN
CVS Tags: DRUPAL-4-7--1-0, HEAD
Branch point for: DRUPAL-4-7
File MIME type: text/x-php
Whoops! Forgot to add this filecvs add na_arbitrator.install
1 <?php
2 // $Id:$
3
4 function na_arbitrator_install() {
5 db_query("DELETE FROM {node_access} WHERE realm='all'");
6 $result = db_query("SELECT nid FROM {node}");
7 while ($n = db_fetch_object($result)) {
8 $node = node_load($n->nid);
9 na_arbitrator_acquire_grants($node);
10 }
11 db_query("UPDATE {system} SET weight = 9 WHERE name = 'na_arbitrator'");
12 drupal_set_message("na_arbitrator database run complete.");
13 }
14
15 function na_arbitrator_update_1() {
16 db_query("UPDATE {system} SET weight = 9 WHERE name = 'na_arbitrator'");
17 }

  ViewVC Help
Powered by ViewVC 1.1.2