This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
MatritumCantat_Web/www/administrator/components/com_events/uninstall.events.php
2012-09-18 20:02:43 +00:00

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";
}
?>