Classes

File content/comments/CommentsAuthorizations.class.php

File content/comments/CommentsAuthorizations.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: 
<?php
/**
 * This class could be used to specified comments authorizations (access, read, post, moderation)
 * @package     Content
 * @subpackage  Comments
 * @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 - 2010 04 01
*/

class CommentsAuthorizations
{
    private $authorized_access_module = true;

    const READ_AUTHORIZATIONS = 1;
    const POST_AUTHORIZATIONS = 2;
    const MODERATE_AUTHORIZATIONS = 4;

    public function is_authorized_access_module()
    {
        return $this->authorized_access_module;
    }

    public function is_authorized_read()
    {
        return $this->check_authorizations(self::READ_AUTHORIZATIONS);
    }

    public function is_authorized_post()
    {
        return $this->check_authorizations(self::POST_AUTHORIZATIONS);
    }

    public function is_authorized_moderation()
    {
        return $this->check_authorizations(self::MODERATE_AUTHORIZATIONS);
    }

    /**
     * @param boolean $authorized
     */
    public function set_authorized_access_module($authorized)
    {
        $this->authorized_access_module = $authorized;
    }

    private function check_authorizations($global_bit)
    {
        return AppContext::get_current_user()->check_auth(CommentsConfig::load()->get_authorizations(), $global_bit);
    }
}
?>