17 lines
372 B
PHP
17 lines
372 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* Language
|
||
|
*
|
||
|
* Some handy methods to handle multi-language support
|
||
|
*
|
||
|
* @package Kirby Toolkit
|
||
|
* @author Bastian Allgeier <bastian@getkirby.com>
|
||
|
* @link http://getkirby.com
|
||
|
* @copyright Bastian Allgeier
|
||
|
* @license http://www.opensource.org/licenses/mit-license.php MIT License
|
||
|
*/
|
||
|
class L extends Silo {
|
||
|
public static $data = array();
|
||
|
}
|