<?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 CheckoutEmail
 * @author Matthew Turnbull <matthew.turnbull@messagescan.net>
 */
 
/**
 * Checkout plugin to process payments by email
 *
 * @package CheckoutEmail
 */
class CheckoutEmailModule extends GalleryModule {

    function CheckoutEmailModule() {
	global $gallery;		
	$this->setId('checkoutemail');
	$this->setName('Checkout by Email');
	$this->setDescription($gallery->i18n('Complete checkout by email'));
	$this->setVersion('0.0.7');
	$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', 'CheckoutEmailPlugin', 'checkoutemail',
            'modules/checkoutemail/classes/CheckoutEmailPlugin.class', 'checkoutemail', null);
	if ($ret) {
	    return $ret->wrap(__FILE__, __LINE__);
	}		
			
	return null;
    }

    /**
     * @see GalleryModule::needsConfiguration
     */
    function needsConfiguration() {
        list ($ret, $value) = $this->getParameter('paymentText');
        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 Email'), 
							   'view' => 'checkoutemail.Admin')));
    }

    /**
     * @see GalleryModule::getConfigurationView
     */
    function getConfigurationView() {
	return 'checkoutemail.Admin';
    }
}
?>
