sateler/yii2-rut

Add chilean RUT formatting and validation

2.0.5 2019-02-26 13:59 UTC

This package is auto-updated.

Last update: 2024-04-27 01:23:42 UTC


README

Build Status

Rut Formatting

Load the behavior in the config/web.php:

'formatter' => [
    'class' => \yii\i18n\Formatter::className(),
    'as rutFormatter' => \sateler\rut\RutFormatBehavior::className(),
],

Or if you use another formatter class, add the behavior:

public function behaviors() {
    return [ \sateler\rut\RutFormatBehavior::className() ];
}

Then you can use Yii::$app->formatter->asRut(), or specify the rut format in GridView or DetailView.

Rut Validator

In your model rules, add:

['property', \sateler\rut\RutValidator::className()]

Rut Widget

To format input data in textInputs, in your app assets, add:

public $depends = [
    ...,
    'sateler\rut\RutWidgetAsset',
];

And activate the text input using:

$form->field($model, "rut")->textInput(['data-rut' => 'true'])

Upgrade from 1.x to 2.x:

Just replace references to RutValidator::trimValue($value) to the new function Rut::normalize($value)