Чтобы загрузить в текущий tmpl файл (tmpl/users.php) другой файл, например (tmpl/edit.php), в коде пишем следующее: $this->loadTemplate('edit') ;
Если необходимо запустить другой template
$this->setLayout('edit');
echo $this->loadTemplate('plan');
$this->setLayout('run');
Чтобы загрузить другой шаблон
$myEdit = JFactory::getApplication()->input;
$myEdit->set('view', 'other');
$this->loadTemplate('tab2');
$myEdit->set('view', 'original');
en: joomla add view into another view
joomla call a form in other component





