Вставить модуль Joomla в любое место

Как вставить модуль в любое место кода?

<?php
 $document&nbsp;&nbsp; &nbsp;= &JFactory::getDocument();
 $renderer&nbsp;&nbsp; &nbsp;= $document->loadRenderer('modules');
 $options&nbsp;&nbsp; &nbsp;= array('style' => 'xhtml');
 $position&nbsp;&nbsp; &nbsp;= 'left';
 echo $renderer->render($position, $options, null);
?>