git-svn-id: https://192.168.0.254/svn/Proyectos.FundacionLQDVI_WebCongresos/trunk@2 94ccb1af-fd9d-d947-8d90-7f70ea60afc8
65 lines
2.0 KiB
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');
|
|
// alphafooter modules to include step3
|
|
// Footer Module Positions |(Output Style) | and CSS classes are:
|
|
// #alphafooter3
|
|
// footertopalphareg3 | (RAW) | #alpharegistrationtopfooter3
|
|
// footeralpharegheader3 | (xhtml) | #alpharegistrationfooter3
|
|
// footeralpharegleft3 | (rounded) | #alpharegistrationfooterleft3
|
|
// footeralpharegright3 | (rounded) | #alpharegistrationfooterright3
|
|
?>
|
|
<div id="alphafooter3">
|
|
<div id="alpharegistrationtopfooter3">
|
|
<?php
|
|
global $mainframe;
|
|
$document = &JFactory::getDocument();
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|
$options = array( 'style' => 'raw' );
|
|
echo $renderer->render( 'footertopalphareg3', $options, null);
|
|
?>
|
|
</div>
|
|
<div id="alpharegistrationfooter3">
|
|
<?php
|
|
global $mainframe;
|
|
$document = &JFactory::getDocument();
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|
$options = array( 'style' => 'xhtml' );
|
|
echo $renderer->render( 'footeralpharegheader3', $options, null);
|
|
?>
|
|
</div>
|
|
<div class="clr"></div>
|
|
<div id="alpharegistrationfooterleft3">
|
|
<?php
|
|
global $mainframe;
|
|
$document = &JFactory::getDocument();
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|
$options = array( 'style' => 'rounded' );
|
|
echo $renderer->render( 'footeralpharegleft3', $options, null);
|
|
?>
|
|
</div>
|
|
<div id="alpharegistrationfooterright3">
|
|
<?php
|
|
global $mainframe;
|
|
$document = &JFactory::getDocument();
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|
$options = array( 'style' => 'rounded' );
|
|
echo $renderer->render( 'footeralpharegright3', $options, null);
|
|
?>
|
|
</div>
|
|
<div class="clr"></div>
|
|
</div>
|
|
<div class="clr">
|
|
</div>
|
|
<?php
|
|
?>
|