#!/usr/bin/perl
# ==================================================================
# Links SQL - enhanced directory management system
#
#   Website  : https://gossamer-threads.com/
#   Support  : https://gossamer-threads.com/scripts/support/
#   CVS Info : 087,070,085,091,090 
#   Revision : $Id: review.cgi,v 1.4 2001/12/30 19:33:05 alex Exp $
#
# Copyright (c) 2001 Gossamer Threads Inc.  All Rights Reserved.
# Redistribution in part or in whole strictly prohibited. Please
# see LICENSE file for full details.
# ==================================================================

    use strict;
    use lib '/home/sites/home/web/perl/admin';
    use Links qw/$CFG/;
    use Plugins::ProdSearch;

    local $SIG{__DIE__} = \&Links::fatal;

    Links::init('/home/sites/home/web/perl/admin');
    Links::init_user();

    if (GT::Plugins->dispatch ($CFG->{admin_root_path} . '/Plugins', 'check_request', \&Links::check_request)) {
        GT::Plugins->dispatch ($CFG->{admin_root_path} . '/Plugins', 'handle_product', \&Plugins::ProdSearch::handle);
    }
