Пример #1
0
 public function testLanguageText()
 {
     $lang = new Bricky\Lang();
     $this->assertEquals("Hello, I'm a text in English.", $lang->getText('hello'));
 }
Пример #2
0
<?php

/*
* This file is part of Bricky (https://github.com/s3inlc/bricky)
* Copyright 2016 by Sein Coray
*/
include "inc/template.class.php";
include "inc/lang.class.php";
$TEMPLATE = new Bricky\Template("example_language2");
$OBJECTS = array();
//load languages here (Important: Bricky needs the variable to be named $LANGUAGE)
$LANGUAGE = new Bricky\Lang();
$OBJECTS['language'] = $LANGUAGE->getCurrentLanguage();
echo $TEMPLATE->render($OBJECTS);