Skip to content

Releases: neooblaster/SYSLang

v2.1.1

v2.1.0

29 Mar 14:26
Compare
Choose a tag to compare
Add method to set target callback for specified XML Attribute

v2.0.0-alpha4 - Main Feature rework, but still in progress

03 Feb 18:42
Compare
Choose a tag to compare

v2.0.0-alpha4 - Main Feature rework, but still in progress

SYSLang V.1.0.0.0

19 Jan 17:34
Compare
Choose a tag to compare

How To Install

1. Download Class Package

Get SYSLang Class by downloading SYSLang.class.zip

2. Send Files on your Web Server

Extract ZIP File SYSLang.class.zip previously downloaded.
Then upload the two following files on your Web Server, in your Classes folder.

  • SYSLang.class.php
  • SYSLangCompilator.class.php

3. Include Class in your PHP Script

SYSLang have not autoloader. So you have to call it by include (or require) in your PHP Script.

require_once "Classes/SYSLang.class.php";

$lang = new SYSLang("Languages");

You can always use SYSLangCompilator instead of SYSLang, because SYSLangCompilator Extends SYSLang, but you will have many unnecessary methods in your engine instance. ($lang)

require_once "Classes/SYSLangCompilator.class.php";

$lang = new SYSLangCompilator(".");