Prado\Web\UI\WebControls\TTemplatedWizardStep::createChildControls PHP Method

createChildControls() public method

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