Как вставить модуль в любое место кода?
<?php
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer('modules');
$options = array('style' => 'xhtml');
$position = 'left';
echo $renderer->render($position, $options, null);
?>

