Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
bb2f4583
Commit
bb2f4583
authored
Mar 21, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added "add_" magic method to eloquent model.
parent
2fe7cfd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
model.php
laravel/database/eloquent/model.php
+11
-2
No files found.
laravel/database/eloquent/model.php
View file @
bb2f4583
...
...
@@ -577,12 +577,21 @@ abstract class Model {
// to perform the appropriate action based on the method.
if
(
starts_with
(
$method
,
'get_'
))
{
return
$this
->
get_attribute
(
substr
(
$method
,
4
))
;
return
$this
->
attributes
[
substr
(
$method
,
4
)]
;
}
elseif
(
starts_with
(
$method
,
'set_'
))
{
return
$this
->
set_attribute
(
substr
(
$method
,
4
),
$parameters
[
0
])
;
$this
->
attributes
[
substr
(
$method
,
4
)]
=
$parameters
[
0
]
;
}
// If the method begins with "add_", we will assume that the developer is
// adding a related model instance to the model. This is useful for
// adding all of the related models and then saving at once.
elseif
(
starts_with
(
$method
,
'add_'
))
{
$this
->
relationships
[
substr
(
$method
,
4
)][]
=
$parameters
[
0
];
}
// Finally we will assume that the method is actually the beginning of a
// query, such as "where", and will create a new query instance and
// call the method on the query instance, returning it after.
...
...
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