Classes

File content/formatting/extension-point/AbstractContentFormattingExtensionPoint.class.php

File content/formatting/extension-point/AbstractContentFormattingExtensionPoint.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: 
<?php
/**
 * @package     Content
 * @subpackage  Formatting\extension-point
 * @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 10 11
*/

abstract class AbstractContentFormattingExtensionPoint implements ContentFormattingExtensionPoint
{
    protected $forbidden_tags = array();
    protected $html_auth = array();

    public function __construct()
    {
        $content_formatting_config = ContentFormattingConfig::load();
        $this->forbidden_tags = $content_formatting_config->get_forbidden_tags();
        $this->html_auth = $content_formatting_config->get_html_tag_auth();
    }

    /**
     * {@inheritdoc}
     */
    public function set_forbidden_tags(array $tags)
    {
        $this->forbidden_tags = $tags;
    }

    /**
     * {@inheritdoc}
     */
    public function get_forbidden_tags()
    {
        return $this->forbidden_tags;
    }

    /**
     * {@inheritdoc}
     */
    public function add_forbidden_tag($tag)
    {
        $this->forbidden_tags[] = $tag;
    }

    /**
     * {@inheritdoc}
     */
    public function add_forbidden_tags(array $tags)
    {
        foreach ($tags as $tag)
        {
            $this->forbidden_tags[] = $tag;
        }
    }

    /**
     * {@inheritdoc}
     */
    public function set_html_auth(array $auth)
    {
        $this->html_auth = $auth;
    }

    /**
     * {@inheritdoc}
     */
    public function get_html_auth()
    {
        return $this->html_auth;
    }
}
?>