Gantry::Conf::Provider - Base class for all Gantry::Conf providers


Gantry documentation Contained in the Gantry distribution.

Index


Code Index:

NAME

Top

Gantry::Conf::Provider - Base class for all Gantry::Conf providers

SYNOPSIS

Top

    package Gantry::Conf::Provider::SomeNewProvider; 
    use strict; 
    use warnings; 

    use base 'Gantry::Conf::Provider'; 

    use Carp; 

    sub config { 
        my $self    =   shift; 
        my %config; 

        # Retrieve your configuration here. 
        # And return a hash ref 

        return( \%config ); 

    } 

DESCRIPTION

Top

METHODS

Top

SEE ALSO

Top

Gantry(3), Gantry::Conf(3), Gantry::Conf::Tutorial(3), Ganty::Conf::FAQ(3)

AUTHOR

Top

Frank Wiles <frank@revsys.com>

COPYRIGHT and LICENSE

Top


Gantry documentation Contained in the Gantry distribution.

package Gantry::Conf::Provider; 

#####################################################################
# 
#  Name        :    Gantry::Conf::Provider 
#  Author      :    Frank Wiles <frank@revsys.com> 
#
#  Description :    Base class that all Gantry::Conf::Provider::*
#                   modules should inherit from.  
#
#####################################################################

use strict;
use warnings; 

1;

__END__