user550265
user550265

Reputation: 3289

drupal global variables

How can I access the global variables in drupal

Upvotes: 0

Views: 964

Answers (2)

Maria Joseph
Maria Joseph

Reputation: 51

We can access global variables using the keyword 'global' . global $language , global $user are some of the global variables.

Upvotes: 0

Nikit
Nikit

Reputation: 5128

Example:

global $user;
if ($user->uid == 1) { print t('I am superuser!'); }

List of globals. Investigate structure of global via print_r($user) or dsm($user) (if devel module installed)ю

Upvotes: 7

Related Questions