• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/url/adminpage/basebuilder.php
  • Класс: BitrixIblockUrlAdminPageBaseBuilder
  • Вызов: BaseBuilder::checkSliderPath
protected function checkSliderPath(?string $path): bool
{
	if ($path === null)
	{
		$path = $this->getSliderPath();
	}
	if ($path === null || $path === '')
	{
		return false;
	}

	$prepared = [];
	foreach ($this->getSliderPathTemplates() as $mask)
	{
		if (preg_match($mask, $path, $prepared))
		{
			return true;
		}
	}

	return false;
}