1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/limesurvey_ynh.git synced 2024-09-03 19:36:32 +02:00
limesurvey_ynh/sources/application/helpers/globalsettings_helper.php

91 lines
2.7 KiB
PHP

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
* LimeSurvey
* Copyright (C) 2007-2011 The LimeSurvey Project Team / Carsten Schmitz
* All rights reserved.
* License: GNU/GPL License v2 or later, see LICENSE.php
* LimeSurvey is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*
*/
//Ensure script is not run directly, avoid path disclosure
//if (!isset($homedir) || isset($_REQUEST['$homedir'])) {die("Cannot run this script directly");}
injectglobalsettings();
function injectglobalsettings()
{
$settings = SettingGlobal::model()->findAll();
//if ($dbvaluearray!==false)
if (count($settings) > 0)
{
//foreach ($dbvaluearray as $setting)
foreach ($settings as $setting)
{
//if (Yii::app()->getConfig($setting->getAttribute('stg_name')) !== false)
//{
//$$setting['stg_name']=$setting['stg_value'];
Yii::app()->setConfig($setting->getAttribute('stg_name'), $setting->getAttribute('stg_value'));
//}
}
}
}
function getGlobalSetting($settingname)
{
$dbvalue = Yii::app()->getConfig($settingname);
if ($dbvalue === false)
{
$dbvalue = SettingGlobal::model()->findByPk($settingname);
if ($dbvalue === null)
{
Yii::app()->setConfig($settingname, null);
$dbvalue = '';
}
else
{
$dbvalue = $dbvalue->getAttribute('stg_value');
}
if (Yii::app()->getConfig($settingname) !== false)
{
// If the setting was not found in the setting table but exists as a variable (from config.php)
// get it and save it to the table
setGlobalSetting($settingname, Yii::app()->getConfig($settingname));
$dbvalue = Yii::app()->getConfig($settingname);
}
}
return $dbvalue;
}
function setGlobalSetting($settingname, $settingvalue)
{
if (Yii::app()->getConfig("demoMode")==true && ($settingname=='sitename' || $settingname=='defaultlang' || $settingname=='defaulthtmleditormode' || $settingname=='filterxsshtml'))
{
return; //don't save
}
if ($record = SettingGlobal::model()->findByPk($settingname))
{
$record->stg_value = $settingvalue;
$record->save();
}
else
{
$record = new SettingGlobal;
$record->stg_name = $settingname;
$record->stg_value = $settingvalue;
$record->save();
}
Yii::app()->setConfig($settingname, $settingvalue);
}
?>