en la otra clase donde esta el checkThumbs() va asi
Código PHP:
class ImgOperations{
/**
* Check if thumbs are created?
* @var bool
*/
public $checkThumbs = false;
public function load($type){
if($this->checkThumbs){
echo "Check thumbs true<br/>";
self::create_thumb();
}else{
echo "Check thumbs false <br/>";
}
...
Tambien mando esa variable desde otro sitio y de alli todo perfeto (con la siguiente linea comentada o no, no tiene efecto):
Código PHP:
$ImgOperations = new ImgOperations();
$ImgOperations->checkThumbs = false;