Classes

File phpboost/config/CustomizationConfig.class.php

File phpboost/config/CustomizationConfig.class.php

 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 
<?php
/**
 * @package     PHPBoost
 * @subpackage  Config
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Kevin MASSY <reidlos@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2011 08 30
*/

class CustomizationConfig extends AbstractConfigData
{
    const FAVICON_PATH = 'favicon_path';
    const HEADER_LOGO_PATH_ALL_THEMES = 'header_logo_path_all_themes';

    public function get_favicon_path()
    {
        return $this->get_property(self::FAVICON_PATH);
    }

    public function set_favicon_path($path)
    {
        $this->set_property(self::FAVICON_PATH, $path);
    }

    public function favicon_exists()
    {
        $favicon_file = new File(PATH_TO_ROOT . $this->get_favicon_path());
        return $favicon_file->exists();
    }

    public function favicon_type()
    {
        if ($this->favicon_exists())
        {
            $favicon = new Image(PATH_TO_ROOT . $this->get_favicon_path());
            return $favicon->get_mime_type();
        }
        return null;
    }

    public function set_header_logo_path_all_themes($path)
    {
        $this->set_property(self::HEADER_LOGO_PATH_ALL_THEMES, $path);
    }

    public function remove_header_logo_path_all_themes()
    {
        $this->set_property(self::HEADER_LOGO_PATH_ALL_THEMES, null);
    }

    public function get_header_logo_path_all_themes()
    {
        return $this->get_property(self::HEADER_LOGO_PATH_ALL_THEMES);
    }

    public function get_default_values()
    {
        return array(
            self::FAVICON_PATH => '/favicon.ico',
            self::HEADER_LOGO_PATH_ALL_THEMES => null
        );
    }

    /**
     * Returns the configuration.
     * @return CustomizationConfig
     */
    public static function load()
    {
        return ConfigManager::load(__CLASS__, 'kernel', 'customization-config');
    }

    /**
     * Saves the configuration in the database.
     */
    public static function save()
    {
        ConfigManager::save('kernel', self::load(), 'customization-config');
    }
}
?>