Category Archives: Drupal

Thursday, 29 March, 2007

Global variable in Drupal module

There is something different in a variable between a variable in a Drupal module and a variable in a normal php file.

normal php

$_User = "user";

function test() {

global $_User;

..

}

Drupal module

global $_User;

$_User = "user";

function test() {

global $_User;

..

}

In Drupal module, I need the additional global $_User; Why? :?

Tags: Php


Posted in Drupal , Php


Thursday, 29 March, 2007

Installing Drupal Module

Reference at Installing contributed modules.

I need to remember where to Enable the module. Version 5.x users go to administer > site building > modules.

Tags: installation


Posted in Drupal