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
6ac1634f
Commit
6ac1634f
authored
Aug 08, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor and comment the view class.
parent
1e318847
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
17 deletions
+9
-17
view.php
system/view.php
+9
-17
No files found.
system/view.php
View file @
6ac1634f
...
...
@@ -194,7 +194,15 @@ class View {
throw
new
\Exception
(
"View [
$view
] does not exist."
);
}
$this
->
get_sub_views
();
// Before rendering the view, we need to spin through all of the bound data and
// evaluate any sub-views or responses that are present.
foreach
(
$this
->
data
as
&
$data
)
{
if
(
$data
instanceof
View
or
$data
instanceof
Response
)
{
$data
=
(
string
)
$data
;
}
}
extract
(
$this
->
data
,
EXTR_SKIP
);
...
...
@@ -205,22 +213,6 @@ class View {
return
ob_get_clean
();
}
/**
* Evaluate the content of all bound sub-views and responses.
*
* @return void
*/
private
function
get_sub_views
()
{
foreach
(
$this
->
data
as
&
$data
)
{
if
(
$data
instanceof
View
or
$data
instanceof
Response
)
{
$data
=
(
string
)
$data
;
}
}
}
/**
* Add a view instance to the view data.
*
...
...
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