mirror of
https://github.com/jimeh/zynapse.git
synced 2026-02-19 07:06:39 +00:00
Initial import of old legacy Zynapse Framework,
untouched since early 2008.
This commit is contained in:
23
app/preferences/application.prefs.php
Normal file
23
app/preferences/application.prefs.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user