Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The third step is to update the modules database table.

Code Block
languagesql
UPDATE `modules` SET `class` = 'testmoduleold' WHERE `class` = 'testmodule';

The fourth step is to change view context statements from:

Code Block
languagephp
$this->view->setDefaultView('components' . DS . 'modules' . DS . 'testmodule' . DS)

to

Code Block
languagephp
$this->view->setDefaultView('components' . DS . 'modules' . DS . 'testmoduleold' . DS)