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


Gantry documentation  | view source Contained in the Gantry distribution.

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  | view source Contained in the Gantry distribution.