qobo / cakephp-translations
Languages and translations plugin for CakePHP
Installs: 54 555
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 18
Forks: 0
Open Issues: 2
Language:JavaScript
Type:cakephp-plugin
Requires
- cakephp/cakephp: ^3.8
- muffin/trash: ^2.1
Requires (Dev)
- qobo/cakephp-composer-dev: ^v1.0
- dev-master
- v10.5.0
- v10.4.1
- v10.4.0
- v10.3.6
- v10.3.5
- v10.3.4
- v10.3.3
- v10.3.2
- v10.3.1
- v10.3.0
- v10.2.0
- v10.1.1
- v10.1.0
- v10.0.0
- v9.0.0
- v8.1.1
- v8.1.0
- v8.0.1
- v8.0.0
- v7.2.2
- v7.2.1
- v7.2.0
- v7.1.1
- v7.1.0
- v7.0.1
- v7.0.0
- v6.1.2
- v6.1.1
- v6.1.0
- v6.0.0
- v5.1.0
- v5.0.1
- v5.0.0
- v4.2.1
- v4.2.0
- v4.1.0
- v4.0.2
- v4.0.1
- v4.0.0
- v3.1.0
- v3.0.6
- v3.0.5
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.0.1
- v2.0.0
- v1.0.0
- dev-dependabot/add-v2-config-file
- dev-fix-test-fixtures
- dev-andreasnicolaou-patch-1
- dev-cakephp-v38
- dev-task-12216
This package is auto-updated.
Last update: 2023-04-29 00:44:56 UTC
README
About
CakePHP 3+ plugin for managing content translations.
This plugin is developed by Qobo for Qobrix. It can be used as standalone CakePHP plugin, or as part of the project-template-cakephp installation.
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require qobo/cakephp-translations
Run plugin's migration task:
bin/cake migrations migrate -p Translations
Setup
Load plugin
bin/cake plugin load --routes --bootstrap Translations
To load the Translations component in your application just add behavior Translate into your table initialization method:
public function initialize(array $config)
{
$this->addBehavior('Translate');
}