관리-도구
편집 파일: helper.php
<?php /** * @version $Id: helper.php 10215 2008-04-19 09:28:27Z eddieajau $ * @package Joomla * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved. * @license GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ // no direct access defined('_JEXEC') or die('Restricted access'); class modLoginHelper { function getReturnURL($params, $type) { if($itemid = $params->get($type)) { $menu =& JSite::getMenu(); $item = $menu->getItem($itemid); $url = $item->link; } else { // Redirect to login $uri = JFactory::getURI(); $url = $uri->toString(); } return base64_encode($url); } function getType() { $user = & JFactory::getUser(); return (!$user->get('guest')) ? 'logout' : 'login'; } }