forked from joomla/Members-Manager
22 lines
674 B
PHP
22 lines
674 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @package Joomla.Members.Manager
|
||
|
*
|
||
|
* @created 6th September, 2015
|
||
|
* @author Llewellyn van der Merwe <https://www.joomlacomponentbuilder.com/>
|
||
|
* @github Joomla Members Manager <https://github.com/vdm-io/Joomla-Members-Manager>
|
||
|
* @copyright Copyright (C) 2015. All Rights Reserved
|
||
|
* @license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
||
|
*/
|
||
|
|
||
|
// No direct access to this file
|
||
|
defined('_JEXEC') or die('Restricted access');
|
||
|
|
||
|
?>
|
||
|
|
||
|
<?php if ($this->user->id > 0): ?>
|
||
|
<?php echo $this->loadTemplate('profiles'); ?>
|
||
|
<?php else: ?>
|
||
|
<?php echo $this->loadTemplate('loginmodule'); ?>
|
||
|
<?php endif; ?>
|