Classes

File phpboost/config/ThemesConfig.class.php

File phpboost/config/ThemesConfig.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: 85: 86: 87: 88: 89: 90: 91: 92: 93: 
<?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 04 11
*/

class ThemesConfig extends AbstractConfigData
{
    private static $themes_property = 'themes';

    /**
     * {@inheritdoc}
     */
    public function get_default_values()
    {
        return array(
            self::$themes_property => array()
        );
    }

    public function get_themes()
    {
        return $this->get_property(self::$themes_property);
    }

    public function get_theme($theme_id)
    {
        $themes = $this->get_property(self::$themes_property);
        if (array_key_exists($theme_id, $themes))
        {
            return $themes[$theme_id];
        }
        return null;
    }

    public function set_themes(array $themes)
    {
        $this->set_property(self::$themes_property, $themes);
    }

    public function add_theme(Theme $theme)
    {
        $themes = $this->get_property(self::$themes_property);
        $themes[$theme->get_id()] = $theme;
        $this->set_property(self::$themes_property, $themes);
    }

    public function remove_theme(Theme $theme)
    {
        $themes = $this->get_property(self::$themes_property);
        unset($themes[$theme->get_id()]);
        $this->set_property(self::$themes_property, $themes);
    }

    public function remove_theme_by_id($theme_id)
    {
        $themes = $this->get_property(self::$themes_property);
        unset($themes[$theme_id]);
        $this->set_property(self::$themes_property, $themes);
    }

    public function update(Theme $theme)
    {
        $themes = $this->get_property(self::$themes_property);
        $themes[$theme->get_id()] = $theme;

        $this->set_property(self::$themes_property, $themes);
    }

    /**
     * Loads and returns the themes cached data.
     * @return themesConfig The cached data
     */
    public static function load()
    {
        return ConfigManager::load(__CLASS__, 'kernel', 'themes');
    }

    /**
     * Invalidates the current themes cached data.
     */
    public static function save()
    {
        ConfigManager::save('kernel', self::load(), 'themes');
    }
}
?>