コード例 #1
0
 /**
  * Get the element of schema meta data for the class from the mapping file.
  * This will lazily load the mapping file if it is not loaded yet
  *
  * @return array $element  The element of schema meta data
  */
 public function getElement($className)
 {
     $result = $this->_loadMappingFile($this->_findMappingFile($className));
     if (!isset($result[$className])) {
         throw MappingException::invalidMappingFile($className, str_replace('\\', '.', $className) . $this->_fileExtension);
     }
     return $result[$className];
 }