helionogueir / languagepack
A libraty to manipulate language package
v1.1.0
2016-12-09 15:11 UTC
Requires
- php: >=7.0
- helionogueir/filecreator: v1.1.0
- helionogueir/foldercreator: v1.1.0
This package is not auto-updated.
Last update: 2024-12-16 14:13:43 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