Oh... well, then how could I do it?
I just want the classes to share their info... like the login function is on one, the other one I want is on another. But I want to be able to check if it's logged in inside the function...
Like this
On functions-city.php
function add_job(stuff) {
if ($this->logged_in()) {
}
}
But logged_in() is on another function file...
So how do I do this?
Thanks a lot!