1 line
529 B
PHP
1 line
529 B
PHP
|
|
<?php
/**
* Events Component for Joomla 1.0.x
*
* @version $Id: uninstall.events.php 837 2007-07-11 18:01:55Z tstahl $
* @package Events
* @copyright Copyright (C) 2006-2007 JEvents Project Group
* @copyright Copyright (C) 2000 - 2003 Eric Lamette, Dave McDonnell
* @licence http://www.gnu.org/copyleft/gpl.html
* @link http://joomlacode.org/gf/project/jevents
*/
// no direct access
defined( '_VALID_MOS' ) or die( 'Restricted access' );
function com_uninstall()
{
echo "uninstalled";
}
?>
|