PHP Class Fenos\Notifynder\Translator\TranslatorManager

The Translator is responsible to translate the text of the notifications with the custom languages that you'll define in the configuration file. Translations are cached in storage/app/notifynder in a json format. Usage: [ 'it' => [ 'name.category' => 'text to {parse value} translate' ] ]
Inheritance: implements Fenos\Notifynder\Contracts\NotifynderTranslator
Show file Open project: fenos/notifynder Class Usage Examples

Protected Properties

Property Type Description
$compiler Compiler

Public Methods

Method Description
__construct ( Compiler $compiler, Illuminate\Contracts\Config\Repository $config )
getLanguage ( $language ) : mixed Get selected language of translations.
getTranslations ( ) : array | mixed Get translations.
translate ( $language, $nameCategory ) : mixed Translate the given category.

Protected Methods

Method Description
cacheFromConfig ( ) : array Get the translations from the array of the config file and it will cache them.

Method Details

__construct() public method

public __construct ( Compiler $compiler, Illuminate\Contracts\Config\Repository $config )
$compiler Compiler
$config Illuminate\Contracts\Config\Repository

cacheFromConfig() protected method

Get the translations from the array of the config file and it will cache them.
protected cacheFromConfig ( ) : array
return array

getLanguage() public method

Get selected language of translations.
public getLanguage ( $language ) : mixed
$language
return mixed

getTranslations() public method

Get translations.
public getTranslations ( ) : array | mixed
return array | mixed

translate() public method

Translate the given category.
public translate ( $language, $nameCategory ) : mixed
$language
$nameCategory
return mixed

Property Details

$compiler protected property

protected Compiler,Fenos\Notifynder\Translator $compiler
return Compiler