Files
sterivein/core/lib/Thelia/Model/ConfigQuery.php

193 lines
4.4 KiB
PHP
Executable File

<?php
namespace Thelia\Model;
use Thelia\Model\Base\ConfigQuery as BaseConfigQuery;
/**
* Skeleton subclass for performing query and update operations on the 'config' table.
*
*
*
* You should add additional methods to this class to meet the
* application requirements. This class will only be generated as
* long as it does not already exist in the output directory.
*
*/
class ConfigQuery extends BaseConfigQuery {
protected static $cache = array();
public static function read($search, $default = null)
{
if (array_key_exists($search, self::$cache)) {
return self::$cache[$search];
}
$value = self::create()->findOneByName($search);
self::$cache[$search] = $value ? $value->getValue() : $default;
return self::$cache[$search];
}
public static function write($configName, $value, $secured = null, $hidden = null)
{
$config = self::create()->findOneByName($configName);
if(null == $config) {
$config = new Config();
$config->setName($configName);
}
if ($secured !== null) $config->setSecured($secured ? 1 : 0);
if ($hidden !== null) $config->setHidden($hidden ? 1 : 0);
$config->setValue($value);
$config->save();
self::$cache[$configName] = $value;
}
public static function resetCache($key = null)
{
if($key) {
if(array_key_exists($key, self::$cache)) {
unset(self::$cache[$key]);
return true;
}
}
self::$cache = array();
return true;
}
public static function getDefaultLangWhenNoTranslationAvailable()
{
return ConfigQuery::read("default_lang_without_translation", 1);
}
public static function isRewritingEnable()
{
return self::read("rewriting_enable") == 1;
}
public static function getPageNotFoundView()
{
return self::read("page_not_found_view", '404.html');
}
public static function getPassedUrlView()
{
return self::read('passed_url_view', 'passed-url');
}
public static function getActiveTemplate()
{
return self::read('active-template', 'default');
}
public static function useTaxFreeAmounts()
{
return self::read('use_tax_free_amounts', 'default') == 1;
}
/* smtp config */
public static function isSmtpEnable()
{
return self::read('smtp.enabled') == 1;
}
public static function getSmtpHost()
{
return self::read('smtp.host', 'localhost');
}
public static function getSmtpPort()
{
return self::read('smtp.port');
}
public static function getSmtpEncryption()
{
return self::read('smtp.encryption');
}
public static function getSmtpUsername()
{
return self::read('smtp.username');
}
public static function getSmtpPassword()
{
return self::read('smtp.authmode');
}
public static function getSmtpAuthMode()
{
return self::read('smtp.host');
}
public static function getSmtpTimeout()
{
return self::read('smtp.timeout', 30);
}
public static function getSmtpSourceIp()
{
return self::read('smtp.sourceip');
}
public static function enableSmtp()
{
self::write('smtp.enabled', 1, 1, 1);
}
public static function disableSmtp()
{
self::write('smtp.enabled', 0, 1, 1);
}
public static function setSmtpHost($value)
{
return self::write('smtp.host', $value, 1, 1);
}
public static function setSmtpPort($value)
{
return self::write('smtp.port', $value, 1, 1);
}
public static function setSmtpEncryption($value)
{
return self::write('smtp.encryption', $value, 1, 1);
}
public static function setSmtpUsername($value)
{
return self::write('smtp.username', $value, 1, 1);
}
public static function setSmtpPassword($value)
{
return self::write('smtp.password', $value, 1, 1);
}
public static function setSmtpAuthMode($value)
{
return self::write('smtp.authmode', $value, 1, 1);
}
public static function setSmtpTimeout($value)
{
return self::write('smtp.timeout', $value, 1, 1);
}
public static function setSmtpSourceIp($value)
{
return self::write('smtp.sourceip', $value, 1, 1);
}
/* end smtp config */
} // ConfigQuery