cakephp-basic-functions

Global basic utilities for the CakePHP application

View the Project on GitHub anklimsk/cakephp-basic-functions

Using this plugin

Getting information about the current language of the UI and converting it

Converting language code

App::uses('Language', 'CakeTheme.Utility');

$language = new Language();
$result = $language->convertLangCode($lngCode, $outputFormat);

Where: