<?php // File: $Id: case.autolink.php,v 1.3 2001/10/02 14:08:54 jwallenhorst Exp $ $Name: $
// ----------------------------------------------------------------------
// Autolink Tool for Post-Nuke
// Version 0.4b
// Copyright (C) 2001 by Jens Wallenhort (hide@address.com).
// http://www.nusite.de/
// ----------------------------------------------------------------------
// LICENSE
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License (GPL)
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// 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. See the
// GNU General Public License for more details.
//
// To read the license please visit http://www.gnu.org/copyleft/gpl.html
// ----------------------------------------------------------------------
// Original Author of file: Jens Wallenhorst (hide@address.com)
// Purpose of file: "jump file" for autolink
// ----------------------------------------------------------------------
// Changelog
// 2001-08-20 jw - first public version
// ----------------------------------------------------------------------
if (!eregi("admin.php", $PHP_SELF)) { die ("Access Denied"); }
switch($op) {
//main file
case "autolink":
include "modules/$ModName/admin/modules/autolink.php";
break;
// adds a link entry
case "AlAddLink":
include "modules/$ModName/admin/modules/autolink.php";
break;
// shows editing screen for a link entry
case "AlEditLink":
include "modules/$ModName/admin/modules/autolink.php";
break;
// deletes a link entry
case "AlDelLink":
include "modules/$ModName/admin/modules/autolink.php";
break;
// updates a link entry
case "AlUpdateLink":
include "modules/$ModName/admin/modules/autolink.php";
break;
// displays search results for links
case "AlShowLinks":
include "modules/$ModName/admin/modules/autolink.php";
break;
// set preferences
case "AlSetPrefs":
include "modules/$ModName/admin/modules/autolink.php";
break;
}
?>