JOOMLA cutomization

devisrimari's picture

They have: 41 posts

Joined: Sep 2011

hi,
could you pls any one help me out how to create a joomla 1.5 component that will retrieve the data from the database?

thanks

devisrimari's picture

They have: 41 posts

Joined: Sep 2011

hi,
thanks for the suggestions, but i need a component that retrieve data from the database.

They have: 10 posts

Joined: Aug 2011

Creating components for Joomla 1.5! is much more complicated than doing so for version 1.0 because you need to write lot of code for controllers, models, views, tables and templates for the view.

He has: 39 posts

Joined: Jan 2012

Fro more you can go to Google. It gives you the best solution.

They have: 10 posts

Joined: Mar 2012

class helloScreens
{
function helloworld()
{ echo JText::_('helloworld'); }

function helloagain()
{ echo JText::_('helloagain'); }

function hellotestfoo()
{ echo JText::_('hellotestfoo'); }

function hellodefault()
{ echo JText::_('hellodefault'); }
}
All these methods will become stand-alone views. \views\helloworld\view.php
class HelloWorldComponentView extends JView
{

function display()
{
echo JText::_('helloworld');
}
}

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.