Posted by earnie on September 3, 2008 at 2:54pm
| Download | Size | md5 hash |
|---|---|---|
| classAct-7.x-1.x-dev.tar.gz | 7.1 KB | 65537050a9d08514f1136bff2ee0e733 |
| classAct-7.x-1.x-dev.zip | 7.56 KB | f47fa6ce7024414b02bb8979d917a02a |
Last updated: February 25, 2011 - 07:29
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;
}
}
?>