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?