Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
32b9f87b
Commit
32b9f87b
authored
Jan 28, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed id property from Block widget
fixes #2196
parent
f26dcafb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
6 deletions
+2
-6
Block.php
framework/widgets/Block.php
+2
-6
No files found.
framework/widgets/Block.php
View file @
32b9f87b
...
...
@@ -16,10 +16,6 @@ use yii\base\Widget;
class
Block
extends
Widget
{
/**
* @var string the ID of this block.
*/
public
$id
;
/**
* @var boolean whether to render the block content in place. Defaults to false,
* meaning the captured block content will not be displayed.
*/
...
...
@@ -36,7 +32,7 @@ class Block extends Widget
/**
* Ends recording a block.
* This method stops output buffering and saves the rendering result as a named block in the
controller
.
* This method stops output buffering and saves the rendering result as a named block in the
view
.
*/
public
function
run
()
{
...
...
@@ -44,6 +40,6 @@ class Block extends Widget
if
(
$this
->
renderInPlace
)
{
echo
$block
;
}
$this
->
view
->
blocks
[
$this
->
id
]
=
$block
;
$this
->
view
->
blocks
[
$this
->
getId
()
]
=
$block
;
}
}
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