FundacionLQDVI_WebCongresos/www/components/com_alpharegistration/assets/modules/headermodule3.php

65 lines
2.0 KiB
PHP

<?php
/**
* @version 2.0.9 alpharegistration $
* @package alpharegistration
* @copyright Copyright 2009 - Bernard Gilly - All rights reserved.
* @license GNU/GPL
* @author Bernard Gilly
* @author mail contact@alphaplug.com
* @website www.alphaplug.com
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// alphaheadermodulepositions to include step3
// Top Module Positions |(Output Style) | and CSS classes are:
// #alpharegistration3
// topalpharegheader3 | (xhtml) | #alpharegistrationtopheader3
// topalpharegleft3 | (Rounded) | #alpharegistrationtopleft3
// topalpharegright3 | (Rounded) | #alpharegistrationtopright3
// topalpharegfooter3 | (RAW) | #alpharegistrationtopfooter3
?>
<div class="alpharegistration3">
<div id="alpharegistrationtopheader3">
<?php
global $mainframe;
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer( 'modules' );
$options = array( 'style' => 'xhtml' );
echo $renderer->render( 'topalpharegheader3', $options, null);
?>
</div>
<div class="clr"></div>
<div id="alpharegistrationtopleft3">
<?php
global $mainframe;
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer( 'modules' );
$options = array( 'style' => 'rounded' );
echo $renderer->render( 'topalpharegleft3', $options, null);
?>
</div>
<div id="alpharegistrationtopright3">
<?php
global $mainframe;
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer( 'modules' );
$options = array( 'style' => 'rounded' );
echo $renderer->render( 'topalpharegright3', $options, null);
?>
</div>
<div class="clr"></div>
<div id="alpharegistrationtopfooter3">
<?php
global $mainframe;
$document = &JFactory::getDocument();
$renderer = $document->loadRenderer( 'modules' );
$options = array( 'style' => 'raw' );
echo $renderer->render( 'topalpharegfooter3', $options, null);
?>
</div>
</div>
<div class="clr">
</div>
<?php
?>