yellow/system/plugins/language.php

19 lines
422 B
PHP
Raw Normal View History

2016-03-04 08:53:30 +00:00
<?php
// Copyright (c) 2013-2016 Datenstrom, http://datenstrom.se
// This file may be used and distributed under the terms of the public license.
// Language plugin
class YellowLanguage
{
2016-07-29 12:19:05 +00:00
const VERSION = "0.6.6";
2016-03-04 08:53:30 +00:00
var $yellow; //access to API
// Handle initialisation
function onLoad($yellow)
{
$this->yellow = $yellow;
}
}
2016-07-19 22:12:05 +00:00
$yellow->plugins->register("language", "YellowLanguage", YellowLanguage::VERSION);
2016-03-04 08:53:30 +00:00
?>