Вопрос

I have an extension in joomla which is working very well in version 2.5 ,Is there any short changes for doing to working well this extension in version 3.0?

extension name- DJschedule-2.5
Это было полезно?

Решение

If you want to make it work only on Joomla 3.x then read carefully the backward compatibility issues docu.

As I migrated my extensions I had basically to do:

  • Search for JView and replace it with JViewLegacy in the files
  • Convert your view files to support bootstrap in front and back
  • Search for DS and replace it with DIRECTORY_SEPARATOR (or do it lazy and define DS by yourself)

And the rest of the time I spent hunting for little bugs.

If you want to make it work on both versions then I suggest to have a look on FOF, which makes the hard work for you.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top