Fatal error: Using $this when not in object context
Solution 1:
$this only makes sense in methods, not in functions
this is ok
class Foo {
function bar() {
$this->...
this is not
function some() {
$this->
// edit: didn't notice he passes "$this" as parameter
advice: simply replace "$this" with "$somethingElse"
Solution 2:
You cannot pass $this
to a procedural function. $this
is a reserved variable.
Solution 3:
As per my comments.
You want to use $this
as passed variable and php doesn't allow it outside class methods body.
function DoEvents($obj) {
global $_CONF, $_PAGE, $_TSM , $base;
$jpp = $obj->vars->data["jpp"];
$cache["departments"] = $obj->db->QFetchRowArray("SELECT * FROM {$obj->tables[job_departments]}");
$cache["locations"] = $obj->db->QFetchRowArray("SELECT * FROM {$obj->tables[job_location]}");
$cache["names"] = $obj->db->QFetchRowArray("SELECT * FROM {$obj->tables[job_names]}");
$cache["categories"] = $obj->db->QFetchRowArray("SELECT * FROM {$obj->tables[job_categories]}");