<?php
/*
 * $RCSfile: module.inc,v $
 *
 * Gallery - a web based photo album viewer and editor
 * Copyright (C) 2000-2005 Bharat Mediratta
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
 
/**
 * 
 * @package CheckoutPaypal
 * @author Matthew Turnbull <matthew.turnbull@messagescan.net>
 */
 
/**
 * Checkout plugin to process payments by email
 *
 * @package CheckoutPaypal
 */
class CheckoutPaypalModule extends GalleryModule {

    function CheckoutPaypalModule() {
	global $gallery;		
	$this->setId('checkoutpaypal');
	$this->setName('Checkout by Paypal');
	$this->setDescription($gallery->i18n('Complete checkout by paypal'));
	$this->setVersion('0.1.9');
	$this->setGroup('commerce', $gallery->i18n('Commerce'));
	$this->setCallbacks('getSiteAdminViews');
	$this->setRequiredCoreApi(array(7, 2));
	$this->setRequiredModuleApi(array(3, 0));
    }

    /**
     * @see GalleryModule::performFactoryRegistrations()
     */
    function performFactoryRegistrations() {
	/* Register our plugin */
	$ret = GalleryCoreApi::registerFactoryImplementation(
	    'CheckoutPluginInterface_1_0', 'CheckoutPaypalPlugin', 'checkoutpaypal',
            'modules/checkoutpaypal/classes/CheckoutPaypalPlugin.class', 'checkoutpaypal', null);
	if ($ret) {
	    return $ret->wrap(__FILE__, __LINE__);
	}		
			
	/* Register the GalleryCheckoutPaypalIPN class */
	$ret = GalleryCoreApi::registerFactoryImplementation(
	    'GalleryEntity', 'GalleryCheckoutPaypalIPN', 'GalleryCheckoutPaypalIPN',
	    'modules/checkoutpaypal/classes/GalleryCheckoutPaypalIPN.class', 'checkoutpaypal', null);
	if ($ret) {
	    return $ret->wrap(__FILE__, __LINE__);
	}

	return null;
    }

    /**
     * @see GalleryModule::needsConfiguration
     */
    function needsConfiguration() {
	list ($ret, $value) = $this->getParameter('paypalname');
	if ($ret) {
	    return array($ret->wrap(__FILE__, __LINE__), null);
	}
	return array(null, empty($value));
    }

    /**
     * @see GalleryModule::getSiteAdminViews
     */
    function getSiteAdminViews() {
	return array(null, array(array('name' => $this->translate('Checkout by Paypal'), 
							   'view' => 'checkoutpaypal.Admin')));
    }

    /**
     * @see GalleryModule::getConfigurationView
     */
    function getConfigurationView() {
	return 'checkoutpaypal.Admin';
    }
}
?>
