All right, here is an example how it is gonna work:
class qa_html_theme extends qa_html_theme_base {
var $globalHelper = false;
function main() {
// default code
$this->globalHelper = true;
}
function q_view($q_view) {
if ($this->globalHelper ) {
// ..
}
}
} // end class
Note that in $this->globalHelper $globalHelper has no dollar sign in front anymore!