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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
63640db6
Commit
63640db6
authored
Dec 13, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added `Widget::autoIdPrefix` to support prefixing automatically generated widget IDs
parent
97025771
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
CHANGELOG.md
framework/CHANGELOG.md
+1
-1
Widget.php
framework/yii/base/Widget.php
+12
-1
No files found.
framework/CHANGELOG.md
View file @
63640db6
...
...
@@ -12,7 +12,7 @@ Yii Framework 2 Change Log
-
Enh #1437: Added ListView::viewParams (qiangxue)
-
Enh #1469: ActiveRecord::find() now works with default conditions (default scope) applied by createQuery (cebe)
-
Enh: Added
`favicon.ico`
and
`robots.txt`
to defauly application templates (samdark)
-
Enh:
Widget IDs are now always unique no matter if it's the same request or new one (samdark
)
-
Enh:
Added
`Widget::autoIdPrefix`
to support prefixing automatically generated widget IDs (qiangxue
)
-
New #1438:
[
MongoDB integration
](
https://github.com/yiisoft/yii2-mongodb
)
ActiveRecord and Query (klimov-paul)
2.
0.0 alpha, December 1, 2013
...
...
framework/yii/base/Widget.php
View file @
63640db6
...
...
@@ -25,6 +25,17 @@ use ReflectionClass;
class
Widget
extends
Component
implements
ViewContextInterface
{
/**
* @var integer a counter used to generate [[id]] for widgets.
* @internal
*/
public
static
$counter
=
0
;
/**
* @var string the prefix to the automatically generated widget IDs.
* @see [[getId()]]
*/
public
static
$autoIdPrefix
=
'w'
;
/**
* @var Widget[] the widgets that are currently being rendered (not ended). This property
* is maintained by [[begin()]] and [[end()]] methods.
* @internal
...
...
@@ -96,7 +107,7 @@ class Widget extends Component implements ViewContextInterface
public
function
getId
(
$autoGenerate
=
true
)
{
if
(
$autoGenerate
&&
$this
->
_id
===
null
)
{
$this
->
_id
=
'w-'
.
str_replace
(
'.'
,
'-'
,
uniqid
(
''
,
true
))
;
$this
->
_id
=
self
::
$autoIdPrefix
.
self
::
$counter
++
;
}
return
$this
->
_id
;
}
...
...
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