Download the PHP package manujoz/translation without Composer
On this page you can find all versions of the php package manujoz/translation. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download manujoz/translation
More information about manujoz/translation
Files in manujoz/translation
Package translation
Short Description Class for create multilanguage sites o PHP
License MIT
Homepage https://github.com/manujoz/translation.git
Informations about the package translation
Translation
Translation is a PHP class used to create or manage multilanguage sites.
Install
Use
You need to create the files that will contain the translations of the texts. Normally we will use a folder called "locales".
In this folder you will create a file for each language you want the translation of.
Locale file example:
locales/en-US.php
locales/es-ES.php
Once you have created the translation files, the use is very simple:
index.php
Documentation
Constructor
When the class is initialized you can pass as a parameter the path to the folder where your translation files are located. By default it will look in the root folder for a folder called "locales", but if you prefer to save it in different folders for example "translates/section1 /", "translates/section2", you can tell the class where to look for the translation files:
Keep in mind that you will have to enter the path relative to the root folder. In this way you can create translation files by sections of your site for example or organize them as you want.
of() method
With the of() method we perform the translations, this method admits two parameters:
$key
It is the key of the array that will search the file to return the corresponding text.
$params (Optional)
It is an array with the words that can be added to a text as seen in the example above.
set_enclosing_chars() method
By default, in the text of the translations file, use these keys {} as encapulation characters. But if you prefer to change the encapsulation characters for some reason you can do it with the following method:
locales/en-US.php