Spade
Mini Shell
| Directory:~$ /home/lmsyaran/www/modules/mod_jf_login_pro/ |
| [Home] [System Details] [Kill Me] |
<?php
/**
* @package JF Login Pro
* @author JoomForest.com
* @email support@joomforest.com
* @website http://www.joomforest.com
* @copyright Copyright (C) 2011-2016 JoomForest.com, All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
**/
// no direct access
defined('_JEXEC') or die('Restricted access');
class modJFLoginProHelper
{
public static function getReturnUrl($params, $type)
{
$app = JFactory::getApplication();
$item = $app->getMenu()->getItem($params->get($type));
if ($item)
{
$url = 'index.php?Itemid=' . $item->id;
}
else
{
// Stay on the same page
$url = JUri::getInstance()->toString();
}
return base64_encode($url);
}
public static function getType()
{
$user = JFactory::getUser();
return (!$user->get('guest')) ? 'logout' :
'login';
}
public static function getTwoFactorMethods()
{
require_once JPATH_ADMINISTRATOR .
'/components/com_users/helpers/users.php';
return UsersHelper::getTwoFactorMethods();
}
}