PHP 클래스 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' ] ]
상속: implements Fenos\Notifynder\Contracts\NotifynderTranslator
파일 보기 프로젝트 열기: fenos/notifynder 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$compiler Compiler

공개 메소드들

메소드 설명
__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.

보호된 메소드들

메소드 설명
cacheFromConfig ( ) : array Get the translations from the array of the config file and it will cache them.

메소드 상세

__construct() 공개 메소드

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

cacheFromConfig() 보호된 메소드

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

getLanguage() 공개 메소드

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

getTranslations() 공개 메소드

Get translations.
public getTranslations ( ) : array | mixed
리턴 array | mixed

translate() 공개 메소드

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

프로퍼티 상세

$compiler 보호되어 있는 프로퍼티

protected Compiler,Fenos\Notifynder\Translator $compiler
리턴 Compiler