Skip to content

Настройка доступа опроса

Добрый день.

Подскажите как запретить голосование в опросе в определённом подфоруме, для определённой группы?

Есть закрытый подфорум, нужно дать в него доступ на чтение и комментирование группе, но без возможности голосования.

Featured Replies

Штатными средствами никак.

 

Либо писать хук, либо редактировать исходники.

 

/admin/applications/forums/modules_public/extras/vote.php

Найти

		if ( $this->registry->permissions->check( 'reply', $cache[ $this->topic['forum_id'] ] ) == FALSE )
	{
		$this->registry->output->showError( 'topic_vote_noreply', 10353, null, null, 403 );
	}

Ниже добавить

		// http://ipbskins.ru/forum/topic14475.html
	if (in_array($this->topic['forum_id'], array(1,2,3)) and IPSMember::isInGroup($this->memberData, array(4,5,6)))
	{
		$this->registry->output->showError( 'topic_vote_noreply', 10353.1, null, null, 403 );
	}

1,2,3 - ID форумов, в которых запрещаем голосование

4,5,6 - ID групп, которым запрещаем голосование

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.