403Webshell
Server IP : 80.87.202.40  /  Your IP : 216.73.216.169
Web Server : Apache
System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64
User : bitrix ( 600)
PHP Version : 8.2.27
Disable Function : NONE
MySQL : OFF |  cURL : ON |  WGET : ON |  Perl : ON |  Python : OFF |  Sudo : ON |  Pkexec : ON
Directory :  /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/vote/lib/copy/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/vote/lib/copy/manager.php
<?php
namespace Bitrix\Vote\Copy;

use Bitrix\Main\Copy\Container;
use Bitrix\Main\Copy\ContainerCollection;
use Bitrix\Main\Copy\EntityCopier;
use Bitrix\Vote\Copy\Implement\Answer as AnswerImplementer;
use Bitrix\Vote\Copy\Implement\Question as QuestionImplementer;
use Bitrix\Vote\Copy\Implement\Vote as VoteImplementer;

class Manager
{
	private $voteIdsToCopy;

	private $resetVotingResult = true;

	private $markerQuestion = true;
	private $markerAnswer = true;

	public function __construct(array $voteIdsToCopy)
	{
		$this->voteIdsToCopy = $voteIdsToCopy;
	}

	public function markQuestion($marker)
	{
		$this->markerQuestion = (bool) $marker;
	}

	public function markAnswer($marker)
	{
		$this->markerAnswer = (bool) $marker;
	}

	public function setResetVotingResult(bool $bool): void
	{
		$this->resetVotingResult = $bool;
	}

	public function startCopy()
	{
		$containerCollection = $this->getContainerCollection();

		$voteCopier = $this->getVoteCopier();

		return $voteCopier->copy($containerCollection);
	}

	private function getContainerCollection()
	{
		$containerCollection = new ContainerCollection();

		foreach ($this->voteIdsToCopy as $id)
		{
			$containerCollection[] = new Container($id);
		}

		return $containerCollection;
	}

	private function getVoteCopier()
	{
		$voteImplementer = new VoteImplementer();
		$voteImplementer->setResetVotingResult($this->resetVotingResult);
		if ($this->markerQuestion)
		{
			$voteImplementer->setQuestionCopier($this->getQuestionCopier());
		}
		return new EntityCopier($voteImplementer);
	}

	private function getQuestionCopier()
	{
		$questionImplementer = new QuestionImplementer();
		$questionImplementer->setResetVotingResult($this->resetVotingResult);
		if ($this->markerAnswer)
		{
			$questionImplementer->setAnswerCopier($this->getAnswerCopier());
		}

		return new EntityCopier($questionImplementer);
	}

	private function getAnswerCopier()
	{
		$answerImplementer = new AnswerImplementer();
		$answerImplementer->setResetVotingResult($this->resetVotingResult);
		return new EntityCopier($answerImplementer);
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit