• Модуль: salescenter
  • Путь к файлу: ~/bitrix/modules/salescenter/lib/model/meta.php
  • Класс: BitrixSalesCenterModelMeta
  • Вызов: Meta::getByHash
static function getByHash($hash)
{
	$list = MetaTable::getList(['filter' => [
		'=HASH_CRC' => MetaTable::getCrc($hash),
	]]);
	while($meta = $list->fetchObject())
	{
		if($meta->getHash() == $hash)
		{
			return $meta;
		}
	}

	return null;
}