I don't know about that, I'd check the Google's docs. I'm pretty sure it's transitional by default.
The zoom levels are funky, but I think I had moved the zoom setting to the local config. Unless of course, I didn't... lol
There isn't really a list, but it will be the same as the column names.
The quick trick that I still use for the variable names are var_dump or print_r...
print_r($userinfo);
And will give you a list of the members
Use arrname
And you can do:
<?php
$lastreport = ...
if(!$lastreport)
{
echo 'no reports';
}
?>
It will return false if there's no results.
If you do print_r or var_dump() on the $report variable, you'll see all the available fields