lekoala / silverstripe-phonenumber
Format, store and validate phone number in SilverStripe
Fund package maintenance!
lekoala
Installs: 2 393
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 2
Open Issues: 1
Type:silverstripe-vendormodule
Requires
- php: ^7.4 || ^8
- silverstripe/framework: ^4.4 || ^5
- silverstripe/recipe-plugin: ^1 || ^2
Requires (Dev)
This package is auto-updated.
Last update: 2024-10-11 12:46:00 UTC
README
Intro
Provide some helper services to deal with phone numbers in SilverStripe
This module integrates libphonenumber as the utility to parse and validate phonenumbers.
Most of the time, it's a good idea to set the country of the phone number. Otherwise, current locale will be used.
Sample code:
$phone = new PhoneField('phone', 'Phone number'); $phone->setCountryField('CountryCode'); $validator = ZenValidator::create(); $validator->setConstraint('phone', Constraint_remote::create('/__phonenumber/validate',null,array('data' => array('country' => 'BE'))));
This module also provide an extension to apply to dataobject, for example to members
SilverStripe\Security\Member: extensions: - LeKoala\PhoneNumber\PhoneNumberExtension
Phone DBField
You can set your DataObject db field to Phone or DBPhone::class
This will automatically scaffold a CountryPhoneField which is a combo field with a country dropdown (with list of prefixes) and a space for the field itself
Form fields
Two available fields:
- PhoneField : a plain phone field that supports national and international numbers
- CountryPhoneField : a combo field with a country dropdown + national phone number
Ajax validation and formatting
Expose ´phonenumber/validate´ and ´phonenumber/format´ endpoints for validation and formatting of phone numbers
Todo
None
Compatibility
Tested with 5.x but should work on any ^4|^5 projects
Maintainer
LeKoala - thomas@lekoala.be