当前位置: 首页>>代码示例>>PHP>>正文


PHP RedBeanModel::getMetadata方法代码示例

本文整理汇总了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;
 }
开发者ID:sandeep1027,项目名称:zurmo_,代码行数:26,代码来源:ModelRelationsAndAttributesToReportAdapter.php

示例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();
                         }
                     }
                 }
             }
         }
     }
 }
开发者ID:RamaKavanan,项目名称:InitialVersion,代码行数:28,代码来源:ListViewMergeUtil.php


注:本文中的RedBeanModel::getMetadata方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。