• Модуль: timeman
  • Путь к файлу: ~/bitrix/modules/timeman/lib/util/form/baseform.php
  • Класс: BitrixTimemanUtilFormBaseForm
  • Вызов: BaseForm::getFirstError
public function getFirstError($fieldName = null)
{
	if (!$this->hasErrors())
	{
		return null;
	}
	if ($fieldName === null)
	{
		return $this->reset($this->getFirstErrors());
	}
	return $this->reset($this->getErrors($fieldName));
}