Prado\Web\UI\TControl::getID PHP Метод

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

Control ID can be either manually set or automatically generated. If $hideAutoID is true, automatically generated ID will be returned as an empty string.
public getID ( $hideAutoID = true ) : string
Результат string the ID of the control
    public function getID($hideAutoID = true)
    {
        if ($hideAutoID) {
            return $this->_flags & self::IS_ID_SET ? $this->_id : '';
        } else {
            return $this->_id;
        }
    }
TControl