0byt3m1n1
Path:
/
data
/
applications
/
aps
/
xoops
/
2.5.1a-0
/
standard
/
htdocs
/
modules
/
profile
/
preloads
/
[
Home
]
File: core.php
<?php /** * Extended User Profile * * You may not change or alter any portion of this comment or credits * of supporting developers from this source code or any supporting source code * which is considered copyrighted (c) material of the original comment or credit authors. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) * @package profile * @since 2.4.0 * @author trabis <lusopoemas@gmail.com> * @version $Id: core.php 3333 2009-08-27 10:46:15Z trabis $ */ defined('XOOPS_ROOT_PATH') or die('Restricted access'); /** * Profile core preloads * * @copyright The XOOPS Project http://sourceforge.net/projects/xoops/ * @license GNU GPL 2 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.html) * @author trabis <lusopoemas@gmail.com> */ class ProfileCorePreload extends XoopsPreloadItem { function eventCoreUserStart($args) { $op = 'main'; if (isset($_POST['op'])) { $op = trim($_POST['op']); } else if (isset($_GET['op'])) { $op = trim($_GET['op']); } if ($op != 'login' && (empty($_GET['from']) || 'profile' != $_GET['from'])) { header("location: ./modules/profile/user.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING'])); exit(); } } function eventCoreEdituserStart($args) { header("location: ./modules/profile/edituser.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING'])); exit(); } function eventCoreLostpassStart($args) { $email = isset($_GET['email']) ? trim($_GET['email']) : ''; $email = isset($_POST['email']) ? trim($_POST['email']) : $email; header("location: ./modules/profile/lostpass.php?email={$email}" . (empty($_GET['code']) ? "" : "&" . $_GET['code'])); exit(); } function eventCoreRegisterStart($args) { header("location: ./modules/profile/register.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING']) ); exit(); } function eventCoreUserinfoStart($args) { header("location: ./modules/profile/userinfo.php" . (empty($_SERVER['QUERY_STRING']) ? "" : "?" . $_SERVER['QUERY_STRING']) ); exit(); } } ?>