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 step1
|
|||
|
|
// Top Module Positions |(Output Style) | and CSS classes are:
|
|||
|
|
// #alpharegistration1
|
|||
|
|
// topalpharegheader1 | (xhtml) | #alpharegistrationtopheader1
|
|||
|
|
// topalpharegleft1 | (Rounded) | #alpharegistrationtopleft1
|
|||
|
|
// topalpharegright1 | (Rounded) | #alpharegistrationtopright1
|
|||
|
|
// topalpharegfooter1 | (RAW) | #alpharegistrationtopfooter1
|
|||
|
|
?>
|
|||
|
|
<div class="alpharegistration1">
|
|||
|
|
<div id="alpharegistrationtopheader1">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'xhtml' );
|
|||
|
|
echo $renderer->render( 'topalpharegheader1', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
<div class="clr"></div>
|
|||
|
|
<div id="alpharegistrationtopleft1">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'rounded' );
|
|||
|
|
echo $renderer->render( 'topalpharegleft1', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
<div id="alpharegistrationtopright1">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'rounded' );
|
|||
|
|
echo $renderer->render( 'topalpharegright1', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
<div class="clr"></div>
|
|||
|
|
<div id="alpharegistrationtopfooter1">
|
|||
|
|
<?php
|
|||
|
|
global $mainframe;
|
|||
|
|
$document = &JFactory::getDocument();
|
|||
|
|
$renderer = $document->loadRenderer( 'modules' );
|
|||
|
|
$options = array( 'style' => 'raw' );
|
|||
|
|
echo $renderer->render( 'topalpharegfooter1', $options, null);
|
|||
|
|
?>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="clr">
|
|||
|
|
</div>
|
|||
|
|
<?php
|
|||
|
|
?>
|