mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
23 lines
343 B
PHP
23 lines
343 B
PHP
<?php
|
|
/*
|
|
|
|
Zynapse Preference Class
|
|
|
|
This class is used to store preferences, it is humanly editable
|
|
and requires no overhead processing to be loaded.
|
|
|
|
*/
|
|
|
|
class application_preferences extends PreferenceContainer {
|
|
|
|
public $language;
|
|
|
|
function __construct () {
|
|
parent::__construct();
|
|
|
|
$this->language = "english";
|
|
}
|
|
|
|
}
|
|
|
|
?>
|