Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
762f2402
Commit
762f2402
authored
Mar 16, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing bugs and improving.
Signed-off-by: Taylor Otwell <taylorotwell@gmail.com>
parent
b5e75f6f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
25 additions
and
5 deletions
+25
-5
laravel/database/eloquent/model.php
+1
-1
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
+10
-3
laravel/database/eloquent/relationships/has_one_or_many.php
+1
-1
laravel/database/eloquent/relationships/relationship.php
+13
-0
No files found.
laravel/database/eloquent/model.php
View file @
762f2402
...
...
@@ -59,7 +59,7 @@ abstract class Model {
*
* @var bool
*/
public
static
$timestamps
=
fals
e
;
public
static
$timestamps
=
tru
e
;
/**
* The name of the table associated with the model.
...
...
laravel/database/eloquent/relationships/has_many_and_belongs_to.php
View file @
762f2402
<?php
namespace
Laravel\Database\Eloquent\Relationships
;
use
Laravel\Database\Eloquent\Model
;
use
Laravel\Database\Eloquent\Pivot
;
class
Has_Many_And_Belongs_To
extends
Relationship
{
...
...
@@ -23,7 +24,7 @@ class Has_Many_And_Belongs_To extends Relationship {
*
* @var array
*/
protected
$with
=
array
(
'created_at'
,
'updated_at'
);
protected
$with
=
array
(
'
id'
,
'
created_at'
,
'updated_at'
);
/**
* Create a new many to many relationship instance.
...
...
@@ -93,11 +94,17 @@ class Has_Many_And_Belongs_To extends Relationship {
*/
public
function
insert
(
$attributes
,
$joining
=
array
())
{
$
id
=
$this
->
table
->
insert_get_id
(
$attributes
,
$this
->
model
->
sequence
()
);
$
model
=
$this
->
model
->
create
(
$attributes
);
// If the insert was successful, we'll insert a record into the joining table
// using the new ID that was just inserted into the related table, allowing
// the developer to not worry about maintaining the join table.
if
(
$model
instanceof
Model
and
is_numeric
(
$id
=
$model
->
get_key
()))
{
$result
=
$this
->
insert_joining
(
array_merge
(
$this
->
join_record
(
$id
),
$joining
));
}
return
is_numeric
(
$id
)
and
$result
;
return
$model
instanceof
Model
and
$result
;
}
/**
...
...
laravel/database/eloquent/relationships/has_one_or_many.php
View file @
762f2402
...
...
@@ -14,7 +14,7 @@ class Has_One_Or_Many extends Relationship {
{
$attributes
[
$this
->
foreign_key
()]
=
$this
->
base
->
get_key
();
return
parent
::
insert
(
$attributes
);
return
$this
->
model
->
create
(
$attributes
);
}
/**
...
...
laravel/database/eloquent/relationships/relationship.php
View file @
762f2402
...
...
@@ -69,6 +69,19 @@ abstract class Relationship extends Query {
}
/**
* Get a freshly instantiated instance of the related model class.
*
* @param array $attributes
* @return Model
*/
protected
function
fresh_model
(
$attributes
=
array
())
{
$class
=
get_class
(
$this
->
model
);
return
new
$class
(
$attributes
);
}
/**
* Get the foreign key for the relationship.
*
* @return string
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment