classAct 5.x-1.x-dev
Nightly development snapshot from CVS branch: DRUPAL-5
First released: September 3, 2008 - 15:09
First released: September 3, 2008 - 15:09
Download: classAct-5.x-1.x-dev.tar.gz
Size: 7.15 KB
md5_file hash: eb15e6eacb40884dc0b0dd8b2aaa0d84
Last updated: September 27, 2008 - 00:02
View usage statistics for this releaseSize: 7.15 KB
md5_file hash: eb15e6eacb40884dc0b0dd8b2aaa0d84
Last updated: September 27, 2008 - 00:02
Class Act
Now you don't have to worry with declaring the globals, they're already available using the ca class of the classAct module.
<?php
function myFunc () {
$admin = FALSE;
if (ca::$user->uid == 1) {
$admin = TRUE;
}
}
?>