<?php
/**
* JoomlaSEF for Joomla!
* @copyright (c) 2005 The OpenSEF Project (www.opensef.org)
* @copyright (c) 2004-2005 Xaneon Development (www.xaneon.com)
* @license GPL http://www.gnu.org/copyleft/gpl.html
*
* The Security Handler enforces security policies, such as restricting
* which IP addresses may access the Joomla site, blocking user agents
* that are known malware (spam robots, for instance) and so forth.
*
* This should be relatively easy thing to implement on top of OpenSEF.
*/
/** Ensure this file is being included by a parent file */
defined( '_VALID_MOS' ) or die( 'Direct access to this location is not allowed.' );
/** */
@define( '_SECURITY_HANDLER', 'sefSecurityHandler' );
/*
* TODO: implementation.
*/
class sefSecurityHandler extends sefObject { }
?>