當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。