Your IP : 3.149.235.77


Current Path : /home/bitrix/ext_www/klimatlend.ua/bitrix/modules/conversion/lib/
Upload File :
Current File : /home/bitrix/ext_www/klimatlend.ua/bitrix/modules/conversion/lib/attributemanager.php

<?php

namespace Bitrix\Conversion;

final class AttributeManager extends Internals\TypeManager
{
	static protected $event = 'OnGetAttributeTypes';
	static protected $types = array();
	static protected $ready = false;
	static protected $checkModule = true;

	static public function getGroupedTypes()
	{
		static $groupedTypes = array();

		if (! $groupedTypes)
		{
			foreach (self::getTypes() as $name => $type)
			{
				$groupedTypes[$type['GROUP']][$name] = $type;
			}
		}

		return $groupedTypes;
	}
}