public function FileDriver::isTransient in Plug 7
Returns whether the class with the specified name should have its metadata loaded. This is only the case if it is either mapped as an Entity or a MappedSuperclass.
Parameters
string $className:
Return value
boolean
Overrides MappingDriver::isTransient
File
- lib/
doctrine/ common/ lib/ Doctrine/ Common/ Persistence/ Mapping/ Driver/ FileDriver.php, line 126
Class
- FileDriver
- Base driver for file-based metadata drivers.
Namespace
Doctrine\Common\Persistence\Mapping\DriverCode
public function isTransient($className) {
if ($this->classCache === null) {
$this
->initialize();
}
if (isset($this->classCache[$className])) {
return false;
}
return !$this->locator
->fileExists($className);
}