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');
|
|||
|
|
// alphaheadermodulepositions to include step2
|
|||
|
|
// Top Module Positions |(Output Style) | and CSS classes are:
|
|||
|
|
// #alpharegistration2
|
|||
|
|
// topalpharegheader2 | (xhtml) | #alpharegistrationtopheader2
|
|||
|
|
// topalpharegleft2 | (Rounded) | #alpharegistrationtopleft2
|
|||
|
|
// topalpharegright2 | (Rounded) | #alpharegistrationtopright2
|
|||
|
|
// topalpharegfooter2 | (RAW) | #alpharegistrationtopfooter2
|
|||
|
|
?>
|
|||
|
|
<div class="alpharegistration2">
|
|||
|
|
<div id="alpharegistrationtopheader2">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'xhtml' );
|
|||
|
|
echo $renderer->render( 'topalpharegheader2', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
<div class="clr"></div>
|
|||
|
|
<div id="alpharegistrationtopleft2">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'rounded' );
|
|||
|
|
echo $renderer->render( 'topalpharegleft2', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
<div id="alpharegistrationtopright2">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'rounded' );
|
|||
|
|
echo $renderer->render( 'topalpharegright2', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
<div class="clr"></div>
|
|||
|
|
<div id="alpharegistrationtopfooter2">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'raw' );
|
|||
|
|
echo $renderer->render( 'topalpharegfooter2', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="clr">
|
|||
|
|
</div>
|
|||
|
|
<?php
|
|||
|
|
?>
|