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
c0d771f7
Commit
c0d771f7
authored
Aug 17, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #4640: Added `yii\widgets\ActiveForm::beginField()` and `endField()`
parent
9a68678d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
ActiveForm.php
framework/widgets/ActiveForm.php
+45
-0
No files found.
framework/CHANGELOG.md
View file @
c0d771f7
...
...
@@ -553,6 +553,7 @@ Yii Framework 2 Change Log
-
New #2932: Added
`yii\web\ViewAction`
that allow you to render views based on GET parameter (samdark)
-
New #2998: Added
`framework\log\SyslogTarget`
that is able to write log to syslog (miramir, samdark)
-
New #3029: Added
`yii\bootstrap\ActiveForm`
and
`yii\bootstrap\ActiveField`
(mikehaertl)
-
New #4640: Added
`yii\widgets\ActiveForm::beginField()`
and
`endField()`
(qiangxue)
-
New: Yii framework now comes with core messages translated into 26 languages, many thanks to all our translators!
-
New: Added
`yii\codeception\DbTestCase`
(qiangxue)
-
New: Added
`yii\web\GroupUrlRule`
(qiangxue)
...
...
framework/widgets/ActiveForm.php
View file @
c0d771f7
...
...
@@ -8,6 +8,7 @@
namespace
yii\widgets
;
use
Yii
;
use
yii\base\InvalidCallException
;
use
yii\base\Widget
;
use
yii\base\Model
;
use
yii\helpers\Url
;
...
...
@@ -202,6 +203,10 @@ class ActiveForm extends Widget
* @internal
*/
public
$attributes
=
[];
/**
* @var ActiveField[] the ActiveField objects that are currently active
*/
private
$_fields
=
[];
/**
...
...
@@ -222,9 +227,14 @@ class ActiveForm extends Widget
/**
* Runs the widget.
* This registers the necessary javascript code and renders the form close tag.
* @throws InvalidCallException if `beginField()` and `endField()` calls are not matching
*/
public
function
run
()
{
if
(
!
empty
(
$this
->
_fields
))
{
throw
new
InvalidCallException
(
'Each beginField() should have a matching endField() call.'
);
}
if
(
!
empty
(
$this
->
attributes
))
{
$id
=
$this
->
options
[
'id'
];
$options
=
Json
::
encode
(
$this
->
getClientOptions
());
...
...
@@ -306,6 +316,41 @@ class ActiveForm extends Widget
}
/**
* Begins a form field.
* This method will create a new form field and returns its opening tag.
* You should call [[endField()]] afterwards.
* @param Model $model the data model
* @param string $attribute the attribute name or expression. See [[Html::getAttributeName()]] for the format
* about attribute expression.
* @param array $options the additional configurations for the field object
* @return string the opening tag
* @see endField()
* @see field()
*/
public
function
beginField
(
$model
,
$attribute
,
$options
=
[])
{
$field
=
$this
->
field
(
$model
,
$attribute
,
$options
);
$this
->
_fields
[]
=
$field
;
return
$field
->
begin
();
}
/**
* Ends a form field.
* This method will return the closing tag of an active form field started by [[beginField()]].
* @return string the closing tag of the form field
* @throws InvalidCallException if this method is called without a prior [[beginField()]] call.
*/
public
function
endField
()
{
$field
=
array_pop
(
$this
->
_fields
);
if
(
$field
instanceof
ActiveField
)
{
return
$field
->
end
();
}
else
{
throw
new
InvalidCallException
(
'Mismatching endField() call.'
);
}
}
/**
* Validates one or several models and returns an error message array indexed by the attribute IDs.
* This is a helper method that simplifies the way of writing AJAX validation code.
*
...
...
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