• Модуль: perfmon
  • Путь к файлу: ~/bitrix/modules/perfmon/lib/sql/base_object.php
  • Класс: BitrixPerfmonSqlBaseObject
  • Вызов: BaseObject::getLowercasedName
public function getLowercasedName()
{
	if ($this->name[0] == '`')
		return $this->name;
	elseif ($this->name[0] == '"')
		return $this->name;
	elseif ($this->name[0] == '[')
		return $this->name;
	else
		return mb_strtolower($this->name);
}