本文整理匯總了PHP中Doctrine\ORM\Mapping\ClassMetadataInfo::hasAssociation方法的典型用法代碼示例。如果您正苦於以下問題:PHP ClassMetadataInfo::hasAssociation方法的具體用法?PHP ClassMetadataInfo::hasAssociation怎麽用?PHP ClassMetadataInfo::hasAssociation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Doctrine\ORM\Mapping\ClassMetadataInfo
的用法示例。
在下文中一共展示了ClassMetadataInfo::hasAssociation方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getORMTransformerInfo
/**
* @param ColumnInfoInterface $columnInfo
* @param ORMClassMetadataInfo $metadata
*
* @return array
*/
private function getORMTransformerInfo(ColumnInfoInterface $columnInfo, ORMClassMetadataInfo $metadata)
{
if (!$metadata->hasAssociation($columnInfo->getPropertyPath())) {
return;
}
$mapping = $metadata->getAssociationMapping($columnInfo->getPropertyPath());
if (!$this->doctrine->getRepository($mapping['targetEntity']) instanceof ReferableEntityRepositoryInterface) {
return;
}
return array($this->transformer, array('class' => $mapping['targetEntity'], 'multiple' => ORMClassMetadataInfo::MANY_TO_MANY === $mapping['type']));
}
示例2: loadAssociations
/**
* @param ClassMetadataInfo $metadata
*
* @throws \RuntimeException
*/
private function loadAssociations(ClassMetadataInfo $metadata)
{
if (!array_key_exists($metadata->name, $this->associations)) {
return;
}
try {
foreach ($this->associations[$metadata->name] as $type => $mappings) {
foreach ($mappings as $mapping) {
// the association is already set, skip the native one
if ($metadata->hasAssociation($mapping['fieldName'])) {
continue;
}
call_user_func(array($metadata, $type), $mapping);
}
}
} catch (\ReflectionException $e) {
throw new \RuntimeException(sprintf('Error with class %s : %s', $metadata->name, $e->getMessage()), 404, $e);
}
}
示例3: loadAssociations
/**
* @param ClassMetadataInfo $metadata
*
* @throws \RuntimeException
*/
protected function loadAssociations($eventArgs, ClassMetadataInfo $metadata)
{
if (!array_key_exists($metadata->getName(), $this->associations)) {
return;
}
try {
foreach ($this->associations[$metadata->getName()] as $type => $mappings) {
foreach ($mappings as $mapping) {
if ($metadata->hasAssociation($mapping['fieldName'])) {
continue;
}
call_user_func(array($metadata, $type), $mapping);
}
}
} catch (\ReflectionException $e) {
throw new \RuntimeException(sprintf('Error with class %s : %s', $metadata->getName(), $e->getMessage()), 404, $e);
}
}