classAct 7.x-1.x-dev
Nightly development snapshot from CVS branch: HEAD
First released: September 3, 2008 - 14:54
First released: September 3, 2008 - 14:54
Download: classAct-7.x-1.x-dev.tar.gz
Size: 7.15 KB
md5_file hash: 343a7ebcef9fcfe3182efa127627bf04
Last updated: September 27, 2008 - 00:02
View usage statistics for this releaseSize: 7.15 KB
md5_file hash: 343a7ebcef9fcfe3182efa127627bf04
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;
}
}
?>