mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 09:03:48 +08:00
06274c6a7c
Fixed owncloud password encoder/decoder (#291) Fixed ckeditor in ownCloud iframe (Closes #302) Release commit
55 lines
No EOL
1 KiB
JavaScript
55 lines
No EOL
1 KiB
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under CC BY-NC-SA 3.0 */
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
window = require('window'),
|
|
|
|
Utils = require('Common/Utils')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function SettingsStorage()
|
|
{
|
|
this.oSettings = window['rainloopAppData'] || {};
|
|
this.oSettings = Utils.isNormal(this.oSettings) ? this.oSettings : {};
|
|
}
|
|
|
|
SettingsStorage.prototype.oSettings = null;
|
|
|
|
/**
|
|
* @param {string} sName
|
|
* @return {?}
|
|
*/
|
|
SettingsStorage.prototype.settingsGet = function (sName)
|
|
{
|
|
return Utils.isUnd(this.oSettings[sName]) ? null : this.oSettings[sName];
|
|
};
|
|
|
|
/**
|
|
* @param {string} sName
|
|
* @param {?} mValue
|
|
*/
|
|
SettingsStorage.prototype.settingsSet = function (sName, mValue)
|
|
{
|
|
this.oSettings[sName] = mValue;
|
|
};
|
|
|
|
/**
|
|
* @param {string} sName
|
|
* @return {boolean}
|
|
*/
|
|
SettingsStorage.prototype.capa = function (sName)
|
|
{
|
|
var mCapa = this.settingsGet('Capa');
|
|
return Utils.isArray(mCapa) && Utils.isNormal(sName) && -1 < Utils.inArray(sName, mCapa);
|
|
};
|
|
|
|
|
|
module.exports = new SettingsStorage();
|
|
|
|
}()); |