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-05-15 16:35:10 +00:00
const Version = "0.6.5";
2016-03-04 08:53:30 +00:00
var $yellow; //access to API
// Handle initialisation
function onLoad($yellow)
{
$this->yellow = $yellow;
}
}
$yellow->plugins->register("language", "YellowLanguage", YellowLanguage::Version);
?>