Prado\Data\Common\TDbTableInfo::getLowerCaseColumnNames PHP Метод

getLowerCaseColumnNames() публичный Метод

public getLowerCaseColumnNames ( ) : array
Результат array lowercased column key names mapped to normal column ids.
    public function getLowerCaseColumnNames()
    {
        if ($this->_lowercase === null) {
            $this->_lowercase = array();
            foreach ($this->getColumns()->getKeys() as $key) {
                $this->_lowercase[strtolower($key)] = $key;
            }
        }
        return $this->_lowercase;
    }