Classes

File phpboost/config/WritingPadConfig.class.php

File phpboost/config/WritingPadConfig.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: 
<?php
/**
 * This class contains the content of the writing pad which is on the home page
 * of the administration panel.
 * @package     PHPBoost
 * @subpackage  Config
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Benoit SAUTEL <ben.popeye@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2009 10 17
*/

class WritingPadConfig extends AbstractConfigData
{
    /**
     * Sets the content of the writing pad
     * @param string $content The content
     */
    public function set_content($content)
    {
        $this->set_property('content', $content);
    }

    /**
     * Returns the content of the writing pad
     * @return string its content
     */
    public function get_content()
    {
        try
        {
            return $this->get_property('content');
        }
        catch(PropertyNotFoundException $ex)
        {
            return '';
        }
    }

    /**
     * {@inheritdoc}
     */
    public function get_default_values()
    {
        return array(
            'content' => LangLoader::get_message('writing_pad_explain', 'admin')
        );
    }

    /**
     * Returs the configuration.
     * @return WritingPadConfig The configuration
     */
    public static function load()
    {
        return ConfigManager::load(__CLASS__, 'kernel', 'writing-pad');
    }

    /**
     * Saves the configuration
     */
    public static function save()
    {
        ConfigManager::save('kernel', self::load(), 'writing-pad');
    }
}
?>