Commit 97e3df16 by Carsten Brandt

finished first part of form guide

parent 4ce86850
Working with Forms Working with Forms
================== ==================
> Note: This section is under development.
The primary way of using forms in Yii is through [[yii\widgets\ActiveForm]]. This approach should be preferred when The primary way of using forms in Yii is through [[yii\widgets\ActiveForm]]. This approach should be preferred when
the form is based upon a model. Additionally, there are some useful methods in [[yii\helpers\Html]] that are typically the form is based upon a model. Additionally, there are some useful methods in [[yii\helpers\Html]] that are typically
used for adding buttons and help text to any form. used for adding buttons and help text to any form.
When creating model-based forms, the first step is to define the model itself. The model can be either based upon the A form, that is displayed on the client side, will in most cases have a corresponding model which is used
Active Record class, or the more generic Model class. For this login example, a generic model will be used: to validate its input on the server side (Check the [Validating Input](input-validation.md) section for more details on validation).
When creating model-based forms, the first step is to define the model itself. The model can be either based upon
an [Active Record](db-active-record.md) class, representing some data from the database, or a generic Model class
(extending from [[yii\base\Model]]) to capture arbitrary input, for example a login form.
In the following example we show, how a generic Model is used for a login form:
```php ```php
use yii\base\Model; <?php
class LoginForm extends Model class LoginForm extends \yii\base\Model
{ {
public $username; public $username;
public $password; public $password;
/**
* @return array the validation rules.
*/
public function rules() public function rules()
{ {
return [ return [
// username and password are both required // define validation rules here
[['username', 'password'], 'required'],
// password is validated by validatePassword()
['password', 'validatePassword'],
]; ];
} }
/**
* Validates the password.
* This method serves as the inline validation for password.
*/
public function validatePassword()
{
$user = User::findByUsername($this->username);
if (!$user || !$user->validatePassword($this->password)) {
$this->addError('password', 'Incorrect username or password.');
}
}
/**
* Logs in a user using the provided username and password.
* @return boolean whether the user is logged in successfully
*/
public function login()
{
if ($this->validate()) {
$user = User::findByUsername($this->username);
return true;
} else {
return false;
}
}
} }
``` ```
The controller will pass an instance of that model to the view, wherein the [[yii\widgets\ActiveForm|ActiveForm]] widget is used: In the controller, we will pass an instance of that model to the view, wherein the [[yii\widgets\ActiveForm|ActiveForm]]
widget is used to display the form:
```php ```php
<?php
use yii\helpers\Html; use yii\helpers\Html;
use yii\widgets\ActiveForm; use yii\widgets\ActiveForm;
<?php $form = ActiveForm::begin([ $form = ActiveForm::begin([
'id' => 'login-form', 'id' => 'login-form',
'options' => ['class' => 'form-horizontal'], 'options' => ['class' => 'form-horizontal'],
]) ?> ]) ?>
...@@ -82,32 +54,30 @@ use yii\widgets\ActiveForm; ...@@ -82,32 +54,30 @@ use yii\widgets\ActiveForm;
In the above code, [[yii\widgets\ActiveForm::begin()|ActiveForm::begin()]] not only creates a form instance, but also marks the beginning of the form. In the above code, [[yii\widgets\ActiveForm::begin()|ActiveForm::begin()]] not only creates a form instance, but also marks the beginning of the form.
All of the content placed between [[yii\widgets\ActiveForm::begin()|ActiveForm::begin()]] and All of the content placed between [[yii\widgets\ActiveForm::begin()|ActiveForm::begin()]] and
[[yii\widgets\ActiveForm::end()|ActiveForm::end()]] will be wrapped within the `<form>` tag. [[yii\widgets\ActiveForm::end()|ActiveForm::end()]] will be wrapped within the HTML `<form>` tag.
As with any widget, you can specify some options as to how the widget should be configured by passing an array to As with any widget, you can specify some options as to how the widget should be configured by passing an array to
the `begin` method. In this case, an extra CSS class and identifying ID are passed to be used in the opening `<form>` tag. the `begin` method. In this case, an extra CSS class and identifying ID are passed to be used in the opening `<form>` tag.
For all available options, please refer to the API documentation of [[yii\widgets\ActiveForm]].
In order to create a form element in the form, along with the element's label, and any applicable JavaScript validation, In order to create a form element in the form, along with the element's label, and any applicable JavaScript validation,
the [[yii\widgets\ActiveForm::field()|ActiveForm::field()]] method of the Active Form widget is called. the [[yii\widgets\ActiveForm::field()|ActiveForm::field()]] method is called, which returns an instance of [[yii\widgets\ActiveField]].
When the invocation of this method is echoed directly, the result is a regular (text) input. When the result of this method is echoed directly, the result is a regular (text) input.
To customize the output, you can chain additional methods to this call: To customize the output, you can chain additional methods of [[yii\widgets\ActiveField|ActiveField]] to this call:
```php ```php
// a password input
<?= $form->field($model, 'password')->passwordInput() ?> <?= $form->field($model, 'password')->passwordInput() ?>
// adding a hint and a customized label
// or
<?= $form->field($model, 'username')->textInput()->hint('Please enter your name')->label('Name') ?> <?= $form->field($model, 'username')->textInput()->hint('Please enter your name')->label('Name') ?>
``` // creating a HTML5 email input element
This will create all the `<label>`, `<input>` and other tags according to the template defined by the form field.
To add these tags yourself you can use the `Html` helper class.
If you want to use one of HTML5 fields you may specify input type directly like the following:
```php
<?= $form->field($model, 'email')->input('email') ?> <?= $form->field($model, 'email')->input('email') ?>
``` ```
This will create all the `<label>`, `<input>` and other tags according to the [[yii\widgets\ActiveField::$template|template]] defined by the form field.
The name of the input field is determined automatically from the models [[yii\base\Model::formName()|form name] and attribute,
e.g. the name for the input field for the `username` attribute in the above example will be `LoginForm[username]` which will result in an array
of all attributes for the login form to be available in `$_POST['LoginForm']` on the server side.
Specifying the attribute of the model can be done in more sophisticated ways. For example when an attribute may Specifying the attribute of the model can be done in more sophisticated ways. For example when an attribute may
take an array value when uploading multiple files or selecting multiple items you may specify it by appending `[]` take an array value when uploading multiple files or selecting multiple items you may specify it by appending `[]`
to the attribute name: to the attribute name:
...@@ -120,25 +90,43 @@ echo $form->field($model, 'uploadFile[]')->fileInput(['multiple'=>'multiple']); ...@@ -120,25 +90,43 @@ echo $form->field($model, 'uploadFile[]')->fileInput(['multiple'=>'multiple']);
echo $form->field($model, 'items[]')->checkboxList(['a' => 'Item A', 'b' => 'Item B', 'c' => 'Item C']); echo $form->field($model, 'items[]')->checkboxList(['a' => 'Item A', 'b' => 'Item B', 'c' => 'Item C']);
``` ```
> **Tip**: in order to style required fields with asterisk you can use the following CSS: Additional HTML tags can be added using plain HTML or using the methods from the [[yii\helpers\Html|Html]]-helper
class like it is done in the above example with [[yii\helpers\Html::submitButton()|Html::submitButton()]].
> Tip: If you are using Twitter Bootstrap CSS in your application you may want to use
> [[yii\bootstrap\ActiveForm]] instead of [[yii\widgets\ActiveForm]], which is an extension of the
> ActiveForm class that adds some additional styling that works well with the bootstrap CSS framework.
> Tip: in order to style required fields with asterisk you can use the following CSS:
> >
```css > ```css
div.required label:after { > div.required label:after {
content: " *"; > content: " *";
color: red; > color: red;
} > }
``` > ```
Handling multiple models with a single form Handling multiple models with a single form
------------------------------------------- -------------------------------------------
> Note: This section is under development.
Sometimes you need to handle multiple models of the same kind in a single form. For example, multiple settings where Sometimes you need to handle multiple models of the same kind in a single form. For example, multiple settings where
each setting is stored as name-value and is represented by `Setting` model. The each setting is stored as name-value and is represented by `Setting` model. This kind of form is also often
following shows how to implement it with Yii. referred to as "tabular input". In contrast to this, handling different models of different kind, is handled in the section
[Complex Forms with Multiple Models](input-multiple-models).
The following shows how to implement tabular input with Yii.
Let's start with controller action: Let's start with controller action:
```php ```php
<?php
namespace app\controllers; namespace app\controllers;
use Yii; use Yii;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment