0

I want to integrate Joomla with one of existing applications. My application is also in PHP but I don't want to integrate at database level instead looking for API to access Joomla features like adding page etc. JFussion is available but its functionality is only limited to user functionality

mqpasta
  • 960
  • 3
  • 14
  • 38
  • 1
    I could have sworn you asked a question like this a couple of days ago. Again, you still need to provide more detail, research a few things, try something on your own. – Lodder Nov 15 '12 at 11:44

1 Answers1

1

Write your own component for Joomla!, create your own API in it to get parameters and output your desired data.

As far as I know there's no component to do that out-of-the-box and if there is it may not be suitable for your needs. Writing a customized component for your own needs is the best way and it's not that hard if you can understand basic concepts of Joomla! component-creating and object-oriented php programming.

That's what I did for my own component!

This may help: Developing a Model-View-Controller Component for Joomla! 2.5

Farid Rn
  • 3,167
  • 5
  • 39
  • 66