Doctrine\ODM\PHPCR\Mapping\ClassMetadata::getField PHP Method

getField() public method

{@inheritDoc}
Deprecation: use getFieldMapping instead
public getField ( $fieldName )
    public function getField($fieldName)
    {
        return $this->getFieldMapping($fieldName);
    }

Usage Example

Beispiel #1
0
 /**
  * Identify whether a PHPCR property is autocreated or not.
  *
  * @param ClassMetadata $class
  * @param string        $fieldName
  *
  * @return boolean
  */
 private function isAutocreatedProperty(ClassMetadata $class, $fieldName)
 {
     $field = $class->getField($fieldName);
     if ('jcr:uuid' === $field['property']) {
         // jackrabbit at least does not identify this as auto created
         // it is strictly speaking no property
         return true;
     }
     $ntm = $this->session->getWorkspace()->getNodeTypeManager();
     $nodeType = $ntm->getNodeType($class->getNodeType());
     $propertyDefinitions = $nodeType->getPropertyDefinitions();
     foreach ($class->getMixins() as $mixinTypeName) {
         $nodeType = $ntm->getNodeType($mixinTypeName);
         $propertyDefinitions = array_merge($propertyDefinitions, $nodeType->getPropertyDefinitions());
     }
     foreach ($propertyDefinitions as $property) {
         if ($class->mappings[$fieldName]['property'] === $property->getName() && $property->isAutoCreated()) {
             return true;
         }
     }
     return false;
 }
All Usage Examples Of Doctrine\ODM\PHPCR\Mapping\ClassMetadata::getField
ClassMetadata