Reputation: 3289
How can I access the global variables in drupal
Upvotes: 0
Views: 964
Reputation: 51
We can access global variables using the keyword 'global' . global $language , global $user are some of the global variables.
Upvotes: 0
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