Borales / yii2-phone-input

Yii2 International telephone numbers
Other
135 stars 55 forks source link

Update README.md #26

Open adrianmatthews opened 7 years ago

adrianmatthews commented 7 years ago

The following example code contains the jsOption 'allowExtensions'. This should be removed because the autoFormat / allowExtensions / getExtension functionality was removed in v8.0.0.

use borales\extensions\phoneInput\PhoneInput;

echo PhoneInput::widget([
    'name' => 'phone_number',
    'jsOptions' => [
        'allowExtensions' => true,
        'onlyCountries' => ['no', 'pl', 'ua'],
    ]
]);