• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/classes/general/subelement.php
  • Класс: CAdminSubList
  • Вызов: CAdminSubList::getDialogParams
public function getDialogParams($withRequired = false)
{
	$withRequired = ($withRequired === true);
	$result = $this->dialogParams;
	if ($withRequired)
	{
		foreach ($this->requiredDialogParams as $key => $value)
			$result[$key] = $value;
		unset($key, $value);
	}
	return $result;
}