Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this function in the model of my component:

public function getTotProperty($user){
       $database = &JFactory::getDBO();
       $database->setQuery("SELECT created_by  FROM #__jea_properties WHERE created_by=$user");
       $results = $database->loadObjectList();

       return $results;             
}

I need to call this function from template of the component. Without the var $user, it works:

echo $this->get('TotProperty');

But I need to pass the var $user in a function

Normally , the non Joomla method is getTotProperty($user);

How can I pass the variable $user from the model to the template?

share|improve this question
May be this can help you- github.com/joomla/joomla-platform/pull/336 – Irfan Nov 21 '12 at 8:42

1 Answer

up vote 0 down vote accepted

You will need to get the model first and then call the function directly on that. This should be done in the view:

$model = $this->getModel();
echo $model->getTotProperty($user);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.