, (*1)
CakePHP-Contact is here to help you save, test and display all locality and contact datas like phone & address., (*2)
It is compatible with CakePHP 4 only.
For Cakephp3 compatibility, use 1.x versions, (*3)
Installing with Composer
Use composer to install it, (*4)
composer require erwane/cakephp-contact
Phone numbers
Utility
Contact\Utility\Phone::format(?string $text = null, array $options = []), (*5)
$text
is string or null
$options
is an array with this possible options and output
* country
: a country code like FR
or UK
* format
:
* international
: +33 1 23 45 67 89
* national
: 01 23 45 67 89
* uri
: tel:+33-1-23-45-67-89
* short
: +33123456789, (*6)
PhoneNumberType
The phone number database type automatically format request data to an E164 phone number (+33....)
It also format phone number from unformated database result., (*7)
How to use PhoneNumberType
// in src/Application.php
use Cake\Core\Exception\MissingPluginException;
public function bootstrap(): void
{
// Load Contact plugin
try {
$this->addPlugin(\Contact\Plugin::class);
} catch (MissingPluginException $e) {
debug($e->getMessage());
}
}
// in table file
use Cake\Database\Schema\TableSchemaInterface;
use Cake\Orm\Table;
class UsersTable extends Table
/**
* {@inheritDoc}
*/
protected function _initializeSchema(TableSchemaInterface $schema): TableSchemaInterface
{
$schema->setColumnType('phone_number', 'phonenumber')
->setColumnType('mobile_number', 'phonenumber');
return $schema;
}
Default country
Phone number in forms are set in the user country format, like 0123456789
for France. But there can be conflict, depends of the user Country who fill the form.
You can set defaultCountry
for all phone number not set in international format., (*8)
// in config/bootstrap.php
// or after loaded user preference or website country
use Cake\Database\TypeFactory;
use Contact\Database\Type\PhoneNumberType;
$phoneNumberType = new PhoneNumberType();
$phoneNumberType->setDefaultCountry('BE');
TypeFactory::set('phonenumber', $phoneNumberType);
Now, all non international form phone numbers was formated with +32 prefix, (*9)
Phone number validation
Contact plugin provide a simple phone number validation rule, (*10)
// in validation method
public function validationDefault(Validator $validator)
{
$validator->setProvider('contact', 'Contact\Validation\ContactValidation');
$validator->add('phone_number', [
'number' => [
'provider' => 'contact',
'rule' => ['phone'],
],
]);
}
// You can pass country argument
$validator->add('phone_number', [
'number' => [
'provider' => 'contact',
'rule' => ['phone', 'ES'],
],
]);
Phone Helper
You can format a phone number in a really simple manner;, (*11)
// In src/AppView.php
public function initialize(): void
{
$this->loadHelper('Contact.Contact');
}
// in template file
echo $this->Contact->phone($entity->phone_number);
// Can pass options (see Utility/Phone::format() help)
echo $this->Contact->phone($entity->phone_number, [
'country' => 'BE',
'format' => 'uri',
]);
Address trait
This trait must be attached to \Cake\ORM\Entity
in your App. It take address data from Entity fields and format it to standard array or string format., (*12)
The fields and format can be configured in Entity or by method., (*13)
Default
Address fields matching
By default, address will be extracted from this fields :, (*14)
// ['key' => 'field name in database']
[
'organization' => 'organization',
'street1' => 'street1',
'street2' => 'street2',
'postalCode' => 'postalCode',
'locality' => 'locality',
'region' => 'Regions.title', // Pluralized table name
'country' => 'Countries.title', // Pluralized table name
]
Data can be in an associated model. Use dot format Countries.title
to set it., (*15)
Address text format
Address text ($entity->address_text
) use Cake\Utility\Text::insert()
method to format fields., (*16)
Default address text format is :, (*17)
":organization
:street1
:street2
:postalCode :locality
:country"
Address trait configuration
You can change default configuration in two ways., (*18)
With methods
// setAddressFields(array $fields, bool $merge = true)
$entity->setAddressFields(['organization' => 'name']);
// setAddressFormat(string $format)
$entity->setAddressFormat(":organization\n:country");
In entity
use Cake\ORM\Entity;
use Contact\Model\Entity\AddressTrait;
class Company extends Entity
{
use AddressTrait;
protected $_addressFields = [
'organization' => 'name',
'street1' => 'address1',
'street2' => 'address2',
'postalCode' => 'postal_code',
'locality' => 'city',
'region' => 'Regions.name',
'country' => 'Countries.name',
];
protected $_addressFormat = ":street1 :street2\n:locality :postalCode\n:region :country";
}