prefix."/".$this->getClassName().".class.php"; return $result; } protected function classExists() { if ( $this->fileExists() ) { require_once($this->getFileName()); } return class_exists($this->getClassName()); } protected function fileExists() { return file_exists($this->getFileName()); } }