smartsolutionsitaly/cakephp-locale-type

Locale type for CakePHP

1.0.1 2019-05-24 07:53 UTC

This package is auto-updated.

Last update: 2024-04-24 19:14:45 UTC


README

LICENSE packagist issues CakePHP

Locale type for CakePHP

Installation

You can install cakephp-locale-type into your project using Composer.

$ composer require smartsolutionsitaly/cakephp-locale-type

Setup

Insert at the bottom of your config/bootstrap.php file the following line:

Type::map('locale', 'SmartSolutionsItaly\CakePHP\Database\Type\LocaleType');

And add or edit the method _initializeSchema in your Table classes.

protected function _initializeSchema(\Cake\Database\Schema\TableSchema $schema)
{
    $schema->setColumnType('your_column_name', 'locale');

    return $schema;
}

License

Licensed under The MIT License For full copyright and license information, please see the LICENSE Redistributions of files must retain the above copyright notice.

Copyright

Copyright (c) 2018-2019 Smart Solutions S.r.l. (https://smartsolutions.it)