本文整理汇总了PHP中RedBeanModel::getMetadata方法的典型用法代码示例。如果您正苦于以下问题:PHP RedBeanModel::getMetadata方法的具体用法?PHP RedBeanModel::getMetadata怎么用?PHP RedBeanModel::getMetadata使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类RedBeanModel
的用法示例。
在下文中一共展示了RedBeanModel::getMetadata方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getDerivedRelationsViaCastedUpModelData
/**
* @param RedBeanModel $precedingModel
* @param null|string $precedingRelation
* @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)
{
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) {
$modelClassName = get_class($this->model);
if (!$this->derivedRelationLinksToPrecedingRelation($modelClassName::getDerivedRelationModelClassName($relation), $modelClassName::getDerivedRelationViaCastedUpModelOpposingRelationName($relation), $precedingModel, $precedingRelation)) {
$attributes[$relation] = array('label' => $this->model->getAttributeLabel($relation));
}
}
}
}
return $attributes;
}
示例2: processDerivedRelationsAssignment
/**
* Process derived relations assignment
* @param RedBeanModel $primaryModel
* @param RedBeanModel $selectedModel
*/
protected static function processDerivedRelationsAssignment($primaryModel, $selectedModel)
{
assert('$primaryModel instanceof RedBeanModel');
assert('$selectedModel instanceof RedBeanModel');
$metadata = $selectedModel->getMetadata();
foreach ($metadata as $modelClassName => $modelClassMetadata) {
if (isset($metadata[$modelClassName]["derivedRelationsViaCastedUpModel"])) {
foreach ($metadata[$modelClassName]["derivedRelationsViaCastedUpModel"] as $relation => $derivedRelationData) {
$opposingModelClassName = $derivedRelationData[1];
$opposingRelation = $derivedRelationData[2];
if ($opposingRelation == 'activityItems' && is_subclass_of($opposingModelClassName, 'Activity')) {
$opposingModels = $opposingModelClassName::getByActivityItemsCastedDown($selectedModel->getClassId('Item'));
if ($opposingModels != null) {
foreach ($opposingModels as $opposingModel) {
$opposingModel->activityItems->add($primaryModel);
$opposingModel->save();
}
}
}
}
}
}
}