本文整理汇总了PHP中RedBeanModel::getDerivedRelationViaCastedUpModelOpposingRelationName方法的典型用法代码示例。如果您正苦于以下问题:PHP RedBeanModel::getDerivedRelationViaCastedUpModelOpposingRelationName方法的具体用法?PHP RedBeanModel::getDerivedRelationViaCastedUpModelOpposingRelationName怎么用?PHP RedBeanModel::getDerivedRelationViaCastedUpModelOpposingRelationName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RedBeanModel
的用法示例。
在下文中一共展示了RedBeanModel::getDerivedRelationViaCastedUpModelOpposingRelationName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDerivedRelationsViaCastedUpModelData
/**
* @param RedBeanModel $precedingModel
* @param null|string $precedingRelation
* @param null|string $onlyIncludeThisModelClassName
* @return array
* @throws NotSupportedException if there the preceding model and relation are not either both defined or both
* null
*/
protected function getDerivedRelationsViaCastedUpModelData(RedBeanModel $precedingModel = null, $precedingRelation = null, $onlyIncludeThisModelClassName = null)
{
assert('$onlyIncludeThisModelClassName === null || is_string($onlyIncludeThisModelClassName)');
if ($precedingModel != null && $precedingRelation == null || $precedingModel == null && $precedingRelation != null) {
throw new NotSupportedException();
}
$attributes = array();
$metadata = $this->model->getMetadata();
foreach ($metadata as $modelClassName => $modelClassMetadata) {
if (isset($metadata[$modelClassName]["derivedRelationsViaCastedUpModel"])) {
foreach ($metadata[$modelClassName]["derivedRelationsViaCastedUpModel"] as $relation => $derivedRelationData) {
$relationModelClassName = $this->model->getDerivedRelationModelClassName($relation);
if ($onlyIncludeThisModelClassName === null || $relationModelClassName == $onlyIncludeThisModelClassName) {
if (!$this->derivedRelationLinksToPrecedingRelation($relationModelClassName, $this->model->getDerivedRelationViaCastedUpModelOpposingRelationName($relation), $precedingModel, $precedingRelation)) {
$attributes[$relation] = array('label' => $this->model->getAttributeLabel($relation));
}
}
}
}
}
return $attributes;
}
示例2: resolveDerivedModels
/**
* @param RedBeanModel $model
* @param string $relation
* @return Array of models
*/
public static function resolveDerivedModels(RedBeanModel $model, $relation)
{
assert('is_string($relation)');
$modelClassName = $model->getDerivedRelationModelClassName($relation);
$inferredRelationName = $model->getDerivedRelationViaCastedUpModelOpposingRelationName($relation);
return WorkflowUtil::getModelsFilteredByInferredModel($modelClassName, $inferredRelationName, (int) $model->getClassId('Item'));
}