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
e2073612
Commit
e2073612
authored
May 29, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactored the widget usage with ActiveField.
parent
920098c0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
65 additions
and
23 deletions
+65
-23
contact.php
apps/basic/views/site/contact.php
+3
-9
ActiveField.php
framework/yii/widgets/ActiveField.php
+11
-1
Captcha.php
framework/yii/widgets/Captcha.php
+51
-13
No files found.
apps/basic/views/site/contact.php
View file @
e2073612
...
...
@@ -31,15 +31,9 @@ $this->params['breadcrumbs'][] = $this->title;
<?php
echo
$form
->
field
(
$model
,
'email'
)
->
textInput
();
?>
<?php
echo
$form
->
field
(
$model
,
'subject'
)
->
textInput
();
?>
<?php
echo
$form
->
field
(
$model
,
'body'
)
->
textArea
(
array
(
'rows'
=>
6
));
?>
<?php
$field
=
$form
->
field
(
$model
,
'verifyCode'
);
echo
$field
->
begin
()
.
$field
->
label
()
.
Captcha
::
widget
()
.
Html
::
activeTextInput
(
$model
,
'verifyCode'
,
array
(
'class'
=>
'input-medium'
))
.
$field
->
error
()
.
$field
->
end
();
?>
<?php
echo
$form
->
field
(
$model
,
'verifyCode'
)
->
widget
(
Captcha
::
className
(),
array
(
'options'
=>
array
(
'class'
=>
'input-medium'
),
));
?>
<div
class=
"form-actions"
>
<?php
echo
Html
::
submitButton
(
'Submit'
,
null
,
null
,
array
(
'class'
=>
'btn btn-primary'
));
?>
</div>
...
...
framework/yii/widgets/ActiveField.php
View file @
e2073612
...
...
@@ -557,7 +557,14 @@ class ActiveField extends Component
}
/**
* Renders a field containing a widget.
* Renders a field containing an input widget.
*
* Note that the widget must have both `model` and `attribute` properties. They will
* be initialized with [[model]] and [[attribute]] of this field, respectively.
*
* If you want to use a widget that does not have `model` and `attribute` properties,
* please use [[render()]] instead.
*
* @param string $class the widget class name
* @param array $config name-value pairs that will be used to initialize the widget
* @return string the rendering result
...
...
@@ -565,6 +572,9 @@ class ActiveField extends Component
public
function
widget
(
$class
,
$config
=
array
())
{
/** @var \yii\base\Widget $class */
$config
[
'model'
]
=
$this
->
model
;
$config
[
'attribute'
]
=
$this
->
attribute
;
$config
[
'view'
]
=
$this
->
form
->
getView
();
return
$this
->
render
(
$class
::
widget
(
$config
));
}
}
framework/yii/widgets/Captcha.php
View file @
e2073612
...
...
@@ -9,13 +9,12 @@ namespace yii\widgets;
use
Yii
;
use
yii\base\InvalidConfigException
;
use
yii\base\Widget
;
use
yii\helpers\Html
;
use
yii\helpers\Json
;
use
yii\web\CaptchaAction
;
/**
* Captcha renders a CAPTCHA image
element
.
* Captcha renders a CAPTCHA image
and an input field that takes user-entered verification code
.
*
* Captcha is used together with [[CaptchaAction]] provide [CAPTCHA](http://en.wikipedia.org/wiki/Captcha)
* - a way of preventing Website spamming.
...
...
@@ -32,7 +31,7 @@ use yii\web\CaptchaAction;
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class
Captcha
extends
Widget
class
Captcha
extends
Input
Widget
{
/**
* @var string the route of the action that generates the CAPTCHA images.
...
...
@@ -40,27 +39,66 @@ class Captcha extends Widget
*/
public
$captchaAction
=
'site/captcha'
;
/**
* @var array HTML attributes to be applied to the
rendered image element
.
* @var array HTML attributes to be applied to the
text input field
.
*/
public
$options
=
array
();
/**
* @var array HTML attributes to be applied to the CAPTCHA image tag.
*/
public
$imageOptions
=
array
();
/**
* @var string the template for arranging the CAPTCHA image tag and the text input tag.
* In this template, the token `{image}` will be replaced with the actual image tag,
* while `{input}` will be replaced with the text input tag.
*/
public
$template
=
'{image} {input}'
;
/**
*
Render
s the widget.
*
Initialize
s the widget.
*/
public
function
run
()
public
function
init
()
{
parent
::
init
();
$this
->
checkRequirements
();
if
(
!
isset
(
$this
->
options
[
'id'
]))
{
$this
->
options
[
'id'
]
=
$this
->
getId
();
$this
->
options
[
'id'
]
=
$this
->
hasModel
()
?
Html
::
getInputId
(
$this
->
model
,
$this
->
attribute
)
:
$this
->
getId
();
}
if
(
!
isset
(
$this
->
imageOptions
[
'id'
]))
{
$this
->
imageOptions
[
'id'
]
=
$this
->
options
[
'id'
]
.
'-image'
;
}
}
/**
* Renders the widget.
*/
public
function
run
()
{
$this
->
registerClientScript
();
if
(
$this
->
hasModel
())
{
$input
=
Html
::
activeTextInput
(
$this
->
model
,
$this
->
attribute
,
$this
->
options
);
}
else
{
$input
=
Html
::
textInput
(
$this
->
name
,
$this
->
value
,
$this
->
options
);
}
$id
=
$this
->
options
[
'id'
];
$options
=
Json
::
encode
(
$this
->
getClientOptions
());
$this
->
view
->
registerAssetBundle
(
'yii/captcha'
);
$this
->
view
->
registerJs
(
"jQuery('#
$id
').yiiCaptcha(
$options
);"
);
$url
=
Yii
::
$app
->
getUrlManager
()
->
createUrl
(
$this
->
captchaAction
,
array
(
'v'
=>
uniqid
()));
echo
Html
::
img
(
$url
,
$this
->
options
);
$image
=
Html
::
img
(
$url
,
$this
->
imageOptions
);
echo
strtr
(
$this
->
template
,
array
(
'{input}'
=>
$input
,
'{image}'
=>
$image
,
));
}
/**
* Registers the needed JavaScript.
*/
public
function
registerClientScript
()
{
$options
=
$this
->
getClientOptions
();
$options
=
empty
(
$options
)
?
''
:
Json
::
encode
(
$options
);
$id
=
$this
->
imageOptions
[
'id'
];
$this
->
getView
()
->
registerAssetBundle
(
'yii/captcha'
);
$this
->
getView
()
->
registerJs
(
"jQuery('#
$id
').yiiCaptcha(
$options
);"
);
}
/**
...
...
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