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
a5af988d
Commit
a5af988d
authored
Jul 07, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove comment bloat from dynamic query builder.
parent
34605ad4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
15 deletions
+4
-15
dynamic.php
system/db/query/dynamic.php
+4
-15
No files found.
system/db/query/dynamic.php
View file @
a5af988d
...
...
@@ -14,32 +14,21 @@ class Dynamic {
*/
public
static
function
build
(
$method
,
$parameters
,
$query
)
{
// ---------------------------------------------------------
// Strip the "where_" off of the method.
// ---------------------------------------------------------
$finder
=
substr
(
$method
,
6
);
// ---------------------------------------------------------
// Split the column names from the connectors.
// ---------------------------------------------------------
$segments
=
preg_split
(
'/(_and_|_or_)/i'
,
$finder
,
-
1
,
PREG_SPLIT_DELIM_CAPTURE
);
// ---------------------------------------------------------
// The connector variable will determine which connector
// will be used for the condition. We'll change it as we
// come across new connectors in the dynamic method string.
// The connector variable will determine which connector will be used for the condition.
// We'll change it as we come across new connectors in the dynamic method string.
//
// The index variable helps us get the correct parameter
// value for the where condition. We increment it each time
// we add a condition.
// ---------------------------------------------------------
// The index variable helps us get the correct parameter value for the where condition.
// We increment it each time we add a condition.
$connector
=
'AND'
;
$index
=
0
;
// ---------------------------------------------------------
// Iterate through each segment and add the conditions.
// ---------------------------------------------------------
foreach
(
$segments
as
$segment
)
{
if
(
$segment
!=
'_and_'
and
$segment
!=
'_or_'
)
...
...
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