Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Yii2, Custom validation message with attribute names

In Login form, I need to have glyphicon-remove icon at the end of every validation message with the corresponding field names. So I used below code in the Login model.

['email', 'required', 'message' => 'Email cannot be blank<span class="glyphicon glyphicon-remove"></span>'],
['password', 'required', 'message' => 'Password cannot be blank<span class="glyphicon glyphicon-remove"></span>']

Instead of this above code, Is there any possible way to use something like the below code.

[['email', 'password'], 'required', 'message' => $attribute.' cannot be blank<span class="glyphicon glyphicon-remove"></span>']

The idea of the above code is to get corresponding field name dynamically for every fields.

Please do the needful. Thanks.

Update

The HTML code (<span class="glyphicon glyphicon-remove"></span>) here I've used is output correctly by using encode=>'false'. But what I need is instead of defining separately for every fields, need to define commonly for all fields.

like image 400
Siva.G ツ Avatar asked Sep 09 '15 10:09

Siva.G ツ


2 Answers

You can use {attribute} in your message to reference the attribute name.

public function rules()
  {
    return [
      [
        ['email','password', 'password_verify', 'alias', 'fullname'],
        'required',
        'message' => '{attribute} is required'
      ],
      [['email'], 'email'],
      [['fullname'], 'string', 'max' => 50],
      [['password', 'password_verify'], 'string', 'min' => 8, 'max' => 20],
      [['password_verify'], 'compare', 'compareAttribute' => 'password'],
  ];
}

You can also use the other options set in the validator like {min} or {requiredValue}

like image 192
Alfred_P Avatar answered Nov 18 '22 20:11

Alfred_P


Add this in your form:

_form.php

<?php
   $form = ActiveForm::begin([
            'options' => ['enctype' => 'multipart/form-data'],
            'fieldConfig' => ['errorOptions' => ['encode' => false, 'class' => 'help-block']] 
   ]);
?>

errorOptions default encoding is true so, your html code is encoded as message, so it won't work until you set 'encode' => false.

like image 38
Insane Skull Avatar answered Nov 18 '22 21:11

Insane Skull