Prado\Wsat\pages\TWsatScaffolding::startVisual PHP Method

startVisual() private method

private startVisual ( )
    private function startVisual()
    {
        $scf_generator = new TWsatScaffoldingGenerator();
        foreach ($scf_generator->getAllTableNames() as $tableName) {
            $dynChb = new TCheckBox();
            $dynChb->ID = "cb_{$tableName}";
            $dynChb->Text = ucfirst($tableName);
            $dynChb->Checked = true;
            $this->registerObject("cb_{$tableName}", $dynChb);
            $this->tableNames->getControls()->add($dynChb);
            $this->tableNames->getControls()->add("</br>");
        }
    }