helionogueir/languagepack

A libraty to manipulate language package

v1.1.0 2016-12-09 15:11 UTC

This package is not auto-updated.

Last update: 2024-05-06 11:06:26 UTC


README

A libraty to manipulate language package.

Installation

Composer (https://getcomposer.org/) and (https://packagist.org/)

composer require helionogueir/languagepack

Usage

helionogueir\languagepack\Lang

Define how to language package to be work

use helionogueir\languagepack\Lang;
Lang::configuration("en-US");
Lang::addRoot("helionogueir/languagepack", "./languagepack/core");
echo Lang::get("languagepack:test:get", "helionogueir/languagepack", Array("method" => "Usage"));

smarty_modifier_languagepack_lang

Smarty Modifiers (http://www.smarty.net/docs/en/plugins.modifiers.tpl) and (http://www.smarty.net/)

Define how to smarty_modifier_languagepack_lang to be work

/* Configuration Smarty */
use Smarty;
$smarty = new Smarty();
$smarty->addPluginsDir("./languagepack/core/modifier");
/* Template (.tpl) smarty_modifier_languagepack_lang Called  */
<p>{"languagepack:test:get"|languagepack_lang:"helionogueir/languagepack":["method" => "Usage"]}</p>

TDD (Test Driven Development)

PHPUnit (https://phpunit.de/)

phpunit -c ./languagepack/tests/unit.xml