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
b870807e
Commit
b870807e
authored
May 04, 2012
by
Dayle Rees
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed blade::register to blade::extend
Signed-off-by:
Dayle Rees
<
thepunkfan@gmail.com
>
parent
d2de301e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
blade.php
laravel/blade.php
+7
-7
No files found.
laravel/blade.php
View file @
b870807e
...
@@ -26,7 +26,7 @@ class Blade {
...
@@ -26,7 +26,7 @@ class Blade {
'yield_sections'
,
'yield_sections'
,
'section_start'
,
'section_start'
,
'section_end'
,
'section_end'
,
'ext
ra
'
,
'ext
ensions
'
,
);
);
/**
/**
...
@@ -34,7 +34,7 @@ class Blade {
...
@@ -34,7 +34,7 @@ class Blade {
*
*
* @var array
* @var array
*/
*/
protected
static
$
registered
=
array
();
protected
static
$
extensions
=
array
();
/**
/**
* Register the Blade view engine with Laravel.
* Register the Blade view engine with Laravel.
...
@@ -76,16 +76,16 @@ class Blade {
...
@@ -76,16 +76,16 @@ class Blade {
* Register a new blade compiler.
* Register a new blade compiler.
*
*
* <code>
* <code>
* Blade::
register
(function($view) {
* Blade::
extend
(function($view) {
* return str_replace('thing', 'another_thing', $view);
* return str_replace('thing', 'another_thing', $view);
* });
* });
* </code>
* </code>
*
*
* @param closure $compiler
* @param closure $compiler
*/
*/
public
static
function
register
(
$compiler
)
public
static
function
extend
(
$compiler
)
{
{
static
::
$
registered
[]
=
$compiler
;
static
::
$
extensions
[]
=
$compiler
;
}
}
/**
/**
...
@@ -416,9 +416,9 @@ class Blade {
...
@@ -416,9 +416,9 @@ class Blade {
* @param string $value
* @param string $value
* @return string
* @return string
*/
*/
protected
static
function
compile_ext
ra
(
$value
)
protected
static
function
compile_ext
ensions
(
$value
)
{
{
foreach
(
static
::
$
registered
as
$compiler
)
foreach
(
static
::
$
extensions
as
$compiler
)
{
{
$value
=
$compiler
(
$value
);
$value
=
$compiler
(
$value
);
}
}
...
...
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