public function execute() { $config = $this->getConfig(); $tipoDocumento = new tipoDocumentoTable($config); $this->objTipoDocumento = $tipoDocumento->getAll(); // así declaramos la vista a usar $this->defineView('tipoDocumento', 'index', 'html'); }
public function execute() { $id = filter_input(INPUT_GET, 'id'); $config = $this->getConfig(); $tipoDocumento = new tipoDocumentoTable($config); // $variables = array( // 'objImplemento' => $objImplemento // ); $this->objTipoDocumento = $tipoDocumento->getAll(); $this->defineView('tipoDocumento', 'editar', 'html'); }