I have created a component and a plugin in joomla 2.5 and there is a Helper
file in the component which will have many useful functions and I plan to call one of its function which then calls another function in the helper by this code:
$this->getinformation();
and it gives me this error :
Fatal error: Call to undefined method
My questions are:
- Why can't I call a function in a helper in Joomla?
- How can I call a function inside helper class?
- Is there any class structure which i missed in this code?