Prado\Web\UI\ActiveControls\TActiveControlAdapter::getBaseActiveControl PHP 메소드

getBaseActiveControl() 공개 메소드

public getBaseActiveControl ( ) : TBaseActiveControl
리턴 TBaseActiveControl Common active control options.
    public function getBaseActiveControl()
    {
        if ($this->_baseActiveControl === null) {
            $type = $this->_activeControlType;
            $this->_baseActiveControl = new $type($this->getControl());
        }
        return $this->_baseActiveControl;
    }