Your IP : 3.128.79.193


Current Path : /home/bitrix/ext_www/coffe.land/bitrix/modules/vote/lib/attachment/
Upload File :
Current File : /home/bitrix/ext_www/coffe.land/bitrix/modules/vote/lib/attachment/forummessageconnector.php

<?php
namespace Bitrix\Vote\Attachment;

use Bitrix\Main\Loader;
use Bitrix\Main\Localization\Loc;

Loc::loadMessages(__FILE__);

final class ForumMessageConnector extends Connector
{
	protected static $messages = array();
	protected static $topics = array();

	private $canRead = null;


	/**
	 * @param integer $userId User ID.
	 * @return bool
	 */
	public function canRead($userId)
	{
		return $this->canRead;
	}

	/**
	 * @param integer $userId User ID.
	 * @return bool
	 */
	public function canEdit($userId)
	{
		return $this->canRead($userId);
	}
}