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


PHP Model::newPivot方法代码示例

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


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

示例1: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof Shift) {
         return new EmployeeShiftPivot($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:rosemalejohn,项目名称:hpo-hris,代码行数:7,代码来源:Employee.php

示例2: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof Member) {
         return new MembersEvents($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:grit45,项目名称:Clan,代码行数:7,代码来源:Event.php

示例3: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof Student) {
         return new StudentSubjectPivot($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:evsign,项目名称:laravelpivotissue,代码行数:7,代码来源:Subject.php

示例4: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof Endpoint) {
         return new FieldEndpoint($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:stefanzweifel,项目名称:example-advanced-eloquent-with-pivot,代码行数:7,代码来源:Field.php

示例5: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof Order) {
         return new ProductPrice($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:esclapes,项目名称:foodhub.es,代码行数:7,代码来源:Product.php

示例6: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof \App\Project) {
         return new \App\ProjectServerPivot($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($this->parent, $attributes, $this->table, $exists);
 }
开发者ID:genee-projects,项目名称:snail,代码行数:7,代码来源:Server.php

示例7: newPivot

 /**
  * Overrides default newPivot method to provide extra logic....
  * REVIEW???
  * @param Model $parent Parent object of pivot table
  * @param array $attributes Custom defined columns for pivot table
  * @param string $table Table name to give to the pivot
  * @param boolean $exists
  */
 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($parent instanceof Department) {
         return new DepartmentUser($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:AdaptiveAds,项目名称:AdaptiveAds,代码行数:15,代码来源:Privilage.php

示例8: newPivot

 /**
  * Create a new pivot model instance.
  *
  * @param  \Illuminate\Database\Eloquent\Model  $parent
  * @param  array  $attributes
  * @param  string  $table
  * @param  bool  $exists
  * @return \Illuminate\Database\Eloquent\Relations\Pivot
  */
 public function newPivot(EloquentModel $parent, array $attributes, $table, $exists)
 {
     $modelClass = get_class($parent);
     if (isset($this->pivots[$modelClass])) {
         $pivotClass = $this->pivots[$modelClass];
         return new $pivotClass($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:artissant,项目名称:laravel,代码行数:18,代码来源:Model.php

示例9: newPivot

 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     if ($this instanceof Transaction && $parent instanceof Account) {
         return new SplitPivot($parent, $attributes, $table, $exists);
     }
     if ($this instanceof Account && $parent instanceof Transaction) {
         return new SplitPivot($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:b3it,项目名称:gnucash-eloquent,代码行数:10,代码来源:Book.php

示例10: newPivot

 /**
  * @param Model  $parent
  * @param array  $attributes
  * @param string $table
  * @param bool   $exists
  *
  * @return PermissionUserPivot|\Illuminate\Database\Eloquent\Relations\Pivot
  */
 public function newPivot(Model $parent, array $attributes, $table, $exists)
 {
     $userModel = app()['config']->get('auth.model');
     $roleModel = app()['config']->get('defender.role_model');
     if ($parent instanceof $userModel) {
         return new PermissionUserPivot($parent, $attributes, $table, $exists);
     }
     if ($parent instanceof $roleModel) {
         return new PermissionRolePivot($parent, $attributes, $table, $exists);
     }
     return parent::newPivot($parent, $attributes, $table, $exists);
 }
开发者ID:renanpro03,项目名称:defender,代码行数:20,代码来源:Permission.php


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