Prado\Web\UI\WebControls\TTemplatedWizardStep::createChildControls PHP 메소드

createChildControls() 공개 메소드

This method mainly instantiates the content template, if any.
public createChildControls ( )
    public function createChildControls()
    {
        $this->getControls()->clear();
        if ($this->_contentTemplate) {
            $this->_contentTemplate->instantiateIn($this);
        }
    }