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


PHP ActiveRecord::hasMany方法代码示例

本文整理汇总了PHP中yii\db\ActiveRecord::hasMany方法的典型用法代码示例。如果您正苦于以下问题:PHP ActiveRecord::hasMany方法的具体用法?PHP ActiveRecord::hasMany怎么用?PHP ActiveRecord::hasMany使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\db\ActiveRecord的用法示例。


在下文中一共展示了ActiveRecord::hasMany方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getTranslations

 /**
  * Relation to model translations
  * @return ActiveQuery
  * @since 2.0.0
  */
 public function getTranslations()
 {
     return $this->owner->hasMany($this->translateClassName, [$this->translateForeignKey => $this->ownerPrimaryKey]);
 }
开发者ID:navatech,项目名称:yii2-multi-language,代码行数:9,代码来源:LanguageBehavior.php

示例2: hasMany

 public function hasMany($class, $link, $alias = null)
 {
     $query = parent::hasMany($class, $link);
     if ($alias == null) {
         $alias = lcfirst(str_replace('_', '', $class::tableName()));
     }
     return $query->from([$alias => $class::tableName()]);
 }
开发者ID:harryzheng0907,项目名称:yii2-rest,代码行数:8,代码来源:ActiveRecord.php

示例3: getTranslations

 /**
  * Relation to model translations
  *
  * @return ActiveQuery
  */
 public function getTranslations()
 {
     return $this->owner->hasMany($this->translationModelName, [$this->translationOwnerField => $this->ownerPrimaryKey]);
 }
开发者ID:gbksoft,项目名称:yii2-multilingual,代码行数:9,代码来源:Multilingual.php

示例4: hasMany

 /**
  * @inheritdoc
  */
 public function hasMany($class, $link)
 {
     return parent::hasMany($this->replaceRelatedClass($class), $link);
 }
开发者ID:tsyrya,项目名称:mybriop,代码行数:7,代码来源:ActiveRecord.php

示例5: hasMany

 public function hasMany($class, $link)
 {
     $rclass = $this->replaceClassWithCurrentPathOne($class);
     return parent::hasMany($rclass, $link);
 }
开发者ID:dawei101,项目名称:plants,代码行数:5,代码来源:ActiveRecord.php

示例6: hasMany

 /**
  * Declares a `has-many` relation.
  * @param string $class the class name of the related record
  * @param array $link the primary-foreign key constraint. The keys of the array refer to
  * the attributes of the record associated with the `$class` model, while the values of the
  * array refer to the corresponding attributes in **this** AR class.
  * adjust the result to use the primary key as the array key
  * @return ActiveQueryInterface the relational query object.
  */
 public function hasMany($class, $link)
 {
     /* @var $class ActiveRecordInterface */
     /* @var $query ActiveQuery */
     $query = parent::hasMany($class, $link);
     if ($query->multiple) {
         $keys = $class::primaryKey();
         if (count($keys) === 1) {
             $query->indexBy = $keys[0];
         } elseif (count($keys) === 2) {
             $query->indexBy = $keys[1];
         }
     }
     return $query;
 }
开发者ID:fangface,项目名称:yii2-concord,代码行数:24,代码来源:ActiveRecord.php


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